wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.71 kB
TypeScript
import type { SingleSignOnUser } from './SingleSignOnUser';
/**
*
* @export
* @interface SingleSignOnUserSearchResponse
*/
export interface SingleSignOnUserSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<SingleSignOnUser>}
* @memberof SingleSignOnUserSearchResponse
*/
readonly data?: Array<SingleSignOnUser>;
/**
* 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<SingleSignOnUserSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;