UNPKG

wallee

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