wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.46 kB
TypeScript
import type { Role } from './Role';
/**
*
* @export
* @interface RoleSearchResponse
*/
export interface RoleSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<Role>}
* @memberof RoleSearchResponse
*/
readonly data?: Array<Role>;
/**
* 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<RoleSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;