/** * 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 ModelDocumentRequest */ export interface ModelDocumentRequest { /** * Shown name of the file * @type {string} * @memberof ModelDocumentRequest */ name: string; /** * Full name of the file * @type {string} * @memberof ModelDocumentRequest */ file_name?: string; /** * * @type {number} * @memberof ModelDocumentRequest */ parent_id?: number | null; /** * Description of the file * @type {string} * @memberof ModelDocumentRequest */ description?: string | null; /** * Provide a info about the document in order to customize the way it is processed. * * * `PHOTOSPHERE` - PHOTOSPHERE * @type {string} * @memberof ModelDocumentRequest */ process_hint?: ModelDocumentRequestProcessHintEnum; } /** * @export * @enum {string} */ export declare enum ModelDocumentRequestProcessHintEnum { Photosphere = "PHOTOSPHERE" } export declare function ModelDocumentRequestFromJSON(json: any): ModelDocumentRequest; export declare function ModelDocumentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelDocumentRequest; export declare function ModelDocumentRequestToJSON(value?: ModelDocumentRequest | null): any;