UNPKG

wallee

Version:
41 lines (40 loc) 1.48 kB
import type { Space } from './Space'; /** * * @export * @interface SpaceSearchResponse */ export interface SpaceSearchResponse { /** * An array containing the actual response objects. * @type {Array<Space>} * @memberof SpaceSearchResponse */ readonly data?: Array<Space>; /** * The number of skipped objects. * @type {number} * @memberof SpaceSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof SpaceSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof SpaceSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the SpaceSearchResponse interface. */ export declare function instanceOfSpaceSearchResponse(value: object): value is SpaceSearchResponse; export declare function SpaceSearchResponseFromJSON(json: any): SpaceSearchResponse; export declare function SpaceSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SpaceSearchResponse; export declare function SpaceSearchResponseToJSON(json: any): SpaceSearchResponse; export declare function SpaceSearchResponseToJSONTyped(value?: Omit<SpaceSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;