/** * 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 { ZoneSpace } from './ZoneSpace'; /** * Adds nested create feature * @export * @interface Zone */ export interface Zone { /** * * @type {number} * @memberof Zone */ readonly id: number; /** * * @type {string} * @memberof Zone */ name?: string | null; /** * * @type {string} * @memberof Zone */ uuid: string; /** * * @type {Array} * @memberof Zone */ zones?: Array; /** * * @type {number} * @memberof Zone */ parent_id?: number | null; /** * * @type {Array} * @memberof Zone */ spaces?: Array; /** * * @type {Date} * @memberof Zone */ readonly created_at: Date; /** * * @type {Date} * @memberof Zone */ readonly updated_at: Date; /** * * @type {string} * @memberof Zone */ color?: string | null; /** * * @type {number} * @memberof Zone */ order?: number; /** * IFC element or element type UUID * @type {string} * @memberof Zone */ storey_uuid?: string | null; } export declare function ZoneFromJSON(json: any): Zone; export declare function ZoneFromJSONTyped(json: any, ignoreDiscriminator: boolean): Zone; export declare function ZoneToJSON(value?: Zone | null): any;