/** * 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 Size */ export interface Size { /** * * `BIMDATA_PLATFORM` - BIMDATA_PLATFORM * * `ORGANIZATION` - ORGANIZATION * @type {string} * @memberof Size */ managed_by: SizeManagedByEnum; /** * * `100` - admin * * `50` - user * @type {number} * @memberof Size */ role: SizeRoleEnum; /** * * @type {number} * @memberof Size */ readonly total_size: number | null; /** * * @type {number} * @memberof Size */ readonly total_size_available: number | null; /** * * @type {number} * @memberof Size */ readonly remaining_total_size: number | null; /** * * @type {number} * @memberof Size */ readonly remaining_total_size_percent: number | null; } /** * @export * @enum {string} */ export declare enum SizeManagedByEnum { BimdataPlatform = "BIMDATA_PLATFORM", Organization = "ORGANIZATION" } /** * @export * @enum {string} */ export declare enum SizeRoleEnum { NUMBER_100 = 100, NUMBER_50 = 50 } export declare function SizeFromJSON(json: any): Size; export declare function SizeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Size; export declare function SizeToJSON(value?: Size | null): any;