/** * 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 { Unit } from './Unit'; /** * Adds nested create feature * @export * @interface PropertyDefinition */ export interface PropertyDefinition { /** * * @type {number} * @memberof PropertyDefinition */ readonly id: number; /** * * @type {Unit} * @memberof PropertyDefinition */ unit?: Unit | null; /** * * @type {string} * @memberof PropertyDefinition */ name?: string | null; /** * * @type {string} * @memberof PropertyDefinition */ description?: string | null; /** * IfcProperty*, Ifc*Properties, IfcComplexProperty, IfcQuantity*, IfcComplexQuantity, Attribute * @type {string} * @memberof PropertyDefinition */ type?: string | null; /** * Type of the corresponding value (Boolean, integer, float, string, IfcRange, ...) * @type {string} * @memberof PropertyDefinition */ value_type?: string | null; } export declare function PropertyDefinitionFromJSON(json: any): PropertyDefinition; export declare function PropertyDefinitionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyDefinition; export declare function PropertyDefinitionToJSON(value?: PropertyDefinition | null): any;