UNPKG

wallee

Version:
35 lines (34 loc) 1.29 kB
import type { Space } from './Space'; /** * * @export * @interface SpaceListResponse */ export interface SpaceListResponse { /** * An array containing the actual response objects. * @type {Array<Space>} * @memberof SpaceListResponse */ readonly data?: Array<Space>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof SpaceListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof SpaceListResponse */ readonly limit?: number; } /** * Check if a given object implements the SpaceListResponse interface. */ export declare function instanceOfSpaceListResponse(value: object): value is SpaceListResponse; export declare function SpaceListResponseFromJSON(json: any): SpaceListResponse; export declare function SpaceListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SpaceListResponse; export declare function SpaceListResponseToJSON(json: any): SpaceListResponse; export declare function SpaceListResponseToJSONTyped(value?: Omit<SpaceListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;