/** * 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 Extensions */ export interface Extensions { /** * * @type {Array} * @memberof Extensions */ readonly topic_type: Array; /** * * @type {Array} * @memberof Extensions */ readonly topic_status: Array; /** * * @type {Array} * @memberof Extensions */ readonly topic_label: Array; /** * * @type {Array} * @memberof Extensions */ readonly priority: Array; /** * * @type {Array} * @memberof Extensions */ readonly stage: Array; /** * * @type {Array} * @memberof Extensions */ readonly user_id_type: Array; /** * Non standard field. Arrays of priorities and this array are in the same order. * @type {Array} * @memberof Extensions */ priority_colors: Array; /** * Non standard field. Arrays of statuses and this array are in the same order. * @type {Array} * @memberof Extensions */ topic_status_colors: Array; /** * Snippet are not yet supported. This field will always be null. * @type {Array} * @memberof Extensions */ readonly snippet_type: Array | null; /** * * @type {Array} * @memberof Extensions */ readonly project_actions: Array; /** * * @type {Array} * @memberof Extensions */ readonly topic_actions: Array; /** * * @type {Array} * @memberof Extensions */ readonly comment_actions: Array; } export declare function ExtensionsFromJSON(json: any): Extensions; export declare function ExtensionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Extensions; export declare function ExtensionsToJSON(value?: Extensions | null): any;