import type { ApplicationUser } from './ApplicationUser'; /** * * @export * @interface ApplicationUserSearchResponse */ export interface ApplicationUserSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof ApplicationUserSearchResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;