/** * BIMData API * BIMData API is a tool to interact with your models stored on BIMData’s servers. Through the API, you can manage your projects, the clouds, upload your IFC files and manage them through endpoints. * * The version of the OpenAPI document: v1 (v1) * Contact: support@bimdata.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { GeometryPointRequest } from './GeometryPointRequest'; /** * * @export * @interface PatchedZoneSpaceRequest */ export interface PatchedZoneSpaceRequest { /** * * @type {string} * @memberof PatchedZoneSpaceRequest */ name?: string | null; /** * * @type {string} * @memberof PatchedZoneSpaceRequest */ longname?: string | null; /** * * @type {string} * @memberof PatchedZoneSpaceRequest */ uuid?: string; /** * * @type {Array} * @memberof PatchedZoneSpaceRequest */ geometry?: Array | null; /** * * @type {number} * @memberof PatchedZoneSpaceRequest */ order?: number; } export declare function PatchedZoneSpaceRequestFromJSON(json: any): PatchedZoneSpaceRequest; export declare function PatchedZoneSpaceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedZoneSpaceRequest; export declare function PatchedZoneSpaceRequestToJSON(value?: PatchedZoneSpaceRequest | null): any;