/** * 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 ModelFiles */ export interface ModelFiles { /** * * @type {string} * @memberof ModelFiles */ structure_file?: string | null; /** * * @type {string} * @memberof ModelFiles */ systems_file?: string | null; /** * * @type {string} * @memberof ModelFiles */ map_file?: string | null; /** * * @type {string} * @memberof ModelFiles */ gltf_file?: string | null; /** * * @type {string} * @memberof ModelFiles */ preview_file?: string | null; /** * DEPRECATED. xkt file url is now in xkt_files field with its version number * @type {string} * @memberof ModelFiles */ xkt_file?: string | null; /** * * @type {string} * @memberof ModelFiles */ fragments_file?: string | null; /** * DEPRECATED. This field is only used for old DWG files. * @type {string} * @memberof ModelFiles */ binary_2d_file?: string | null; } export declare function ModelFilesFromJSON(json: any): ModelFiles; export declare function ModelFilesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelFiles; export declare function ModelFilesToJSON(value?: ModelFiles | null): any;