/** * 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. */ /** * * @export * @interface MaterialOption */ export interface MaterialOption { /** * * @type {number} * @memberof MaterialOption */ readonly id: number; /** * * @type {number} * @memberof MaterialOption */ readonly thickness: number | null; /** * * @type {Array<{ [key: string]: any; }>} * @memberof MaterialOption */ readonly list_components: Array<{ [key: string]: any; }>; } export declare function MaterialOptionFromJSON(json: any): MaterialOption; export declare function MaterialOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): MaterialOption; export declare function MaterialOptionToJSON(value?: MaterialOption | null): any;