siigo-api-node
Version:
A Node.js SDK for the Siigo API
20 lines (18 loc) • 415 B
text/typescript
export interface UserResponse {
pagination: PaginationUser;
results: User[];
}
export interface PaginationUser {
page: number;
page_size: number;
total_results: number;
}
export interface User {
id: number;
username: string;
first_name: string;
last_name: string;
email: string;
active: boolean;
identification: string;
}