/** * 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 { RawMaterial } from './RawMaterial'; import { RawMaterialListComponents } from './RawMaterialListComponents'; import { RawMaterialOptions } from './RawMaterialOptions'; /** * * @export * @interface RawMaterialList */ export interface RawMaterialList { /** * * @type {Array} * @memberof RawMaterialList */ materials_data?: Array | null; /** * * @type {Array} * @memberof RawMaterialList */ list_components?: Array | null; /** * * @type {Array} * @memberof RawMaterialList */ options?: Array | null; } export declare function RawMaterialListFromJSON(json: any): RawMaterialList; export declare function RawMaterialListFromJSONTyped(json: any, ignoreDiscriminator: boolean): RawMaterialList; export declare function RawMaterialListToJSON(value?: RawMaterialList | null): any;