/** * 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 { ModelWithPositioningPlan } from './ModelWithPositioningPlan'; /** * * @export * @interface Building */ export interface Building { /** * IFC element or element type UUID * @type {string} * @memberof Building */ readonly uuid: string; /** * Name of the building * @type {string} * @memberof Building */ readonly name: string | null; /** * Elevation computed by BIMData on storey's objects geometries. * @type {number} * @memberof Building */ readonly bimdata_elevation: number | null; /** * * @type {Array} * @memberof Building */ readonly plans: Array; /** * * @type {number} * @memberof Building */ readonly plans_unreachable_count: number; } export declare function BuildingFromJSON(json: any): Building; export declare function BuildingFromJSONTyped(json: any, ignoreDiscriminator: boolean): Building; export declare function BuildingToJSON(value?: Building | null): any;