/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Space */ export interface Space { /** * * @type {string} * @memberof Space */ 'id': string; /** * * @type {string} * @memberof Space */ 'name': string | null; } /** * Check if a given object implements the Space interface. */ export declare function instanceOfSpace(value: object): value is Space; export declare function SpaceFromJSON(json: any): Space; export declare function SpaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Space; export declare function SpaceToJSON(json: any): Space; export declare function SpaceToJSONTyped(value?: Space | null, ignoreDiscriminator?: boolean): any;