/** * 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 PatchedTopicRequest */ export interface PatchedTopicRequest { /** * * @type {string} * @memberof PatchedTopicRequest */ guid?: string; /** * * @type {string} * @memberof PatchedTopicRequest */ topic_type?: string | null; /** * * @type {string} * @memberof PatchedTopicRequest */ topic_status?: string | null; /** * * @type {string} * @memberof PatchedTopicRequest */ title?: string; /** * * @type {string} * @memberof PatchedTopicRequest */ priority?: string | null; /** * * @type {Array} * @memberof PatchedTopicRequest */ labels?: Array; /** * * @type {Date} * @memberof PatchedTopicRequest */ creation_date?: Date; /** * * @type {string} * @memberof PatchedTopicRequest */ creation_author?: string | null; /** * * @type {string} * @memberof PatchedTopicRequest */ modified_author?: string | null; /** * * @type {string} * @memberof PatchedTopicRequest */ assigned_to?: string | null; /** * * @type {Array} * @memberof PatchedTopicRequest */ reference_links?: Array | null; /** * * @type {string} * @memberof PatchedTopicRequest */ stage?: string | null; /** * * @type {string} * @memberof PatchedTopicRequest */ description?: string | null; /** * * @type {Date} * @memberof PatchedTopicRequest */ due_date?: Date | null; /** * DEPRECATED: Use 'models' instead * @type {Array} * @memberof PatchedTopicRequest */ ifcs?: Array; /** * * @type {Array} * @memberof PatchedTopicRequest */ models?: Array; /** * * The BCF data structure may be used for other purposes than BCF Topics. (Storing coordinates, a viewpoint, a list of objecs, etc) * The default value is "standard". * If you want to use the BCF routes to store custom data not related to a BCF Topic, you must set this value to something else. * You must add a query string filter if you want to fetch topics with a non "standard" format. * * @type {string} * @memberof PatchedTopicRequest */ format?: string; /** * * @type {number} * @memberof PatchedTopicRequest */ index?: number | null; /** * Non standard field. JSON describing bimdataViewerLayout. * @type {any} * @memberof PatchedTopicRequest */ bimdata_viewer_layout?: any | null; /** * * @type {Array} * @memberof PatchedTopicRequest */ groups?: Array; } export declare function PatchedTopicRequestFromJSON(json: any): PatchedTopicRequest; export declare function PatchedTopicRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedTopicRequest; export declare function PatchedTopicRequestToJSON(value?: PatchedTopicRequest | null): any;