import type { SingleSignOnUser } from './SingleSignOnUser'; /** * * @export * @interface SingleSignOnUserSearchResponse */ export interface SingleSignOnUserSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof SingleSignOnUserSearchResponse */ readonly data?: Array; /** * The number of skipped objects. * @type {number} * @memberof SingleSignOnUserSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof SingleSignOnUserSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof SingleSignOnUserSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the SingleSignOnUserSearchResponse interface. */ export declare function instanceOfSingleSignOnUserSearchResponse(value: object): value is SingleSignOnUserSearchResponse; export declare function SingleSignOnUserSearchResponseFromJSON(json: any): SingleSignOnUserSearchResponse; export declare function SingleSignOnUserSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SingleSignOnUserSearchResponse; export declare function SingleSignOnUserSearchResponseToJSON(json: any): SingleSignOnUserSearchResponse; export declare function SingleSignOnUserSearchResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;