/** * 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 { Zone } from './Zone'; import { ZoneSpaceRequest } from './ZoneSpaceRequest'; /** * Adds nested create feature * @export * @interface PatchedZoneRequest */ export interface PatchedZoneRequest { /** * * @type {string} * @memberof PatchedZoneRequest */ name?: string | null; /** * * @type {string} * @memberof PatchedZoneRequest */ uuid?: string; /** * * @type {Array} * @memberof PatchedZoneRequest */ zones?: Array; /** * * @type {number} * @memberof PatchedZoneRequest */ parent_id?: number | null; /** * * @type {Array} * @memberof PatchedZoneRequest */ spaces?: Array; /** * * @type {string} * @memberof PatchedZoneRequest */ color?: string | null; /** * * @type {number} * @memberof PatchedZoneRequest */ order?: number; /** * IFC element or element type UUID * @type {string} * @memberof PatchedZoneRequest */ storey_uuid?: string | null; } export declare function PatchedZoneRequestFromJSON(json: any): PatchedZoneRequest; export declare function PatchedZoneRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedZoneRequest; export declare function PatchedZoneRequestToJSON(value?: PatchedZoneRequest | null): any;