/** * 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 ZoneRequest */ export interface ZoneRequest { /** * * @type {string} * @memberof ZoneRequest */ name?: string | null; /** * * @type {string} * @memberof ZoneRequest */ uuid: string; /** * * @type {Array} * @memberof ZoneRequest */ zones?: Array; /** * * @type {number} * @memberof ZoneRequest */ parent_id?: number | null; /** * * @type {Array} * @memberof ZoneRequest */ spaces?: Array; /** * * @type {string} * @memberof ZoneRequest */ color?: string | null; /** * * @type {number} * @memberof ZoneRequest */ order?: number; /** * IFC element or element type UUID * @type {string} * @memberof ZoneRequest */ storey_uuid?: string | null; } export declare function ZoneRequestFromJSON(json: any): ZoneRequest; export declare function ZoneRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ZoneRequest; export declare function ZoneRequestToJSON(value?: ZoneRequest | null): any;