/** * 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 LightDocument */ export interface LightDocument { /** * * @type {number} * @memberof LightDocument */ readonly id: number; /** * * @type {number} * @memberof LightDocument */ readonly parent_id: number; /** * Shown name of the file * @type {string} * @memberof LightDocument */ readonly name: string; /** * Description of the file * @type {string} * @memberof LightDocument */ readonly description: string | null; /** * Document id of head version * @type {number} * @memberof LightDocument */ readonly head_id: number | null; /** * Document is a head of version or is owned by another document * @type {boolean} * @memberof LightDocument */ readonly is_head_version: boolean; } export declare function LightDocumentFromJSON(json: any): LightDocument; export declare function LightDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): LightDocument; export declare function LightDocumentToJSON(value?: LightDocument | null): any;