/** * 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 PatchedPropertyDefinitionRequest */ export interface PatchedPropertyDefinitionRequest { /** * * @type {UnitRequest} * @memberof PatchedPropertyDefinitionRequest */ unit?: UnitRequest | null; /** * * @type {string} * @memberof PatchedPropertyDefinitionRequest */ name?: string | null; /** * * @type {string} * @memberof PatchedPropertyDefinitionRequest */ description?: string | null; /** * IfcProperty*, Ifc*Properties, IfcComplexProperty, IfcQuantity*, IfcComplexQuantity, Attribute * @type {string} * @memberof PatchedPropertyDefinitionRequest */ type?: string | null; /** * Type of the corresponding value (Boolean, integer, float, string, IfcRange, ...) * @type {string} * @memberof PatchedPropertyDefinitionRequest */ value_type?: string | null; } export declare function PatchedPropertyDefinitionRequestFromJSON(json: any): PatchedPropertyDefinitionRequest; export declare function PatchedPropertyDefinitionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedPropertyDefinitionRequest; export declare function PatchedPropertyDefinitionRequestToJSON(value?: PatchedPropertyDefinitionRequest | null): any;