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