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