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