UNPKG

wallee

Version:
35 lines (34 loc) 1.51 kB
import type { SingleSignOnUser } from './SingleSignOnUser'; /** * * @export * @interface SingleSignOnUserListResponse */ export interface SingleSignOnUserListResponse { /** * An array containing the actual response objects. * @type {Array<SingleSignOnUser>} * @memberof SingleSignOnUserListResponse */ readonly data?: Array<SingleSignOnUser>; /** * 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<SingleSignOnUserListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;