UNPKG

wallee

Version:
41 lines (40 loc) 1.69 kB
import type { ApplicationUser } from './ApplicationUser'; /** * * @export * @interface ApplicationUserSearchResponse */ export interface ApplicationUserSearchResponse { /** * An array containing the actual response objects. * @type {Array<ApplicationUser>} * @memberof ApplicationUserSearchResponse */ readonly data?: Array<ApplicationUser>; /** * The number of skipped objects. * @type {number} * @memberof ApplicationUserSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ApplicationUserSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ApplicationUserSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the ApplicationUserSearchResponse interface. */ export declare function instanceOfApplicationUserSearchResponse(value: object): value is ApplicationUserSearchResponse; export declare function ApplicationUserSearchResponseFromJSON(json: any): ApplicationUserSearchResponse; export declare function ApplicationUserSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationUserSearchResponse; export declare function ApplicationUserSearchResponseToJSON(json: any): ApplicationUserSearchResponse; export declare function ApplicationUserSearchResponseToJSONTyped(value?: Omit<ApplicationUserSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;