import type { Space } from './Space'; /** * * @export * @interface SpaceListResponse */ export interface SpaceListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof SpaceListResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;