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