/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ElementsUserMiniReference, TagReference } from './'; /** * * @export * @interface CommentUpdate */ export interface CommentUpdate { /** * * @type {ElementsUserMiniReference} * @memberof CommentUpdate */ assignee?: ElementsUserMiniReference; /** * * @type {ElementsUserMiniReference} * @memberof CommentUpdate */ user?: ElementsUserMiniReference; /** * * @type {{ [key: string]: string | undefined; }} * @memberof CommentUpdate */ drawing?: { [key: string]: string | undefined; } | null; /** * * @type {Array} * @memberof CommentUpdate */ tags?: Array; /** * * @type {string} * @memberof CommentUpdate */ text?: string; /** * * @type {number} * @memberof CommentUpdate */ time?: number | null; /** * * @type {boolean} * @memberof CommentUpdate */ isCloud?: boolean; /** * * @type {boolean} * @memberof CommentUpdate */ resolved?: boolean; /** * * @type {Date} * @memberof CommentUpdate */ resolvedDate?: Date | null; /** * * @type {number} * @memberof CommentUpdate */ asset: number; /** * * @type {number} * @memberof CommentUpdate */ root?: number | null; /** * * @type {number} * @memberof CommentUpdate */ parent?: number | null; } export declare function CommentUpdateFromJSON(json: any): CommentUpdate; export declare function CommentUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentUpdate; export declare function CommentUpdateToJSON(value?: CommentUpdate | null): any;