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