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