/** * 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 RawSystem */ export interface RawSystem { /** * * @type {string} * @memberof RawSystem */ uuid: string; /** * * @type {string} * @memberof RawSystem */ name?: string | null; /** * * @type {string} * @memberof RawSystem */ description?: string | null; /** * * @type {string} * @memberof RawSystem */ object_type?: string | null; } export declare function RawSystemFromJSON(json: any): RawSystem; export declare function RawSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): RawSystem; export declare function RawSystemToJSON(value?: RawSystem | null): any;