UNPKG

wallee

Version:
35 lines (34 loc) 1.49 kB
import type { ApplicationUser } from './ApplicationUser'; /** * * @export * @interface ApplicationUserListResponse */ export interface ApplicationUserListResponse { /** * An array containing the actual response objects. * @type {Array<ApplicationUser>} * @memberof ApplicationUserListResponse */ readonly data?: Array<ApplicationUser>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ApplicationUserListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ApplicationUserListResponse */ readonly limit?: number; } /** * Check if a given object implements the ApplicationUserListResponse interface. */ export declare function instanceOfApplicationUserListResponse(value: object): value is ApplicationUserListResponse; export declare function ApplicationUserListResponseFromJSON(json: any): ApplicationUserListResponse; export declare function ApplicationUserListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationUserListResponse; export declare function ApplicationUserListResponseToJSON(json: any): ApplicationUserListResponse; export declare function ApplicationUserListResponseToJSONTyped(value?: Omit<ApplicationUserListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;