/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { WebitelContactsCommentFormat } from './webitel-contacts-comment-format'; import { WebitelContactsLookup } from './webitel-contacts-lookup'; /** * * @export * @interface WebitelContactsComment */ export interface WebitelContactsComment { /** * The user who created this Field. * @type {string} * @memberof WebitelContactsComment */ created_at?: string; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsComment */ created_by?: WebitelContactsLookup; /** * Unique ID of the latest version of the update. This ID changes after any update to the underlying value(s). * @type {string} * @memberof WebitelContactsComment */ etag?: string; /** * Styles of the text components. * @type {Array} * @memberof WebitelContactsComment */ format?: Array; /** * The unique ID of the Comment. Never changes. * @type {string} * @memberof WebitelContactsComment */ id?: string; /** * Rich Text, multi-line[d] string value. * @type {string} * @memberof WebitelContactsComment */ text?: string; /** * Timestamp(milli) of the last Field update. Take part in Etag generation. * @type {string} * @memberof WebitelContactsComment */ updated_at?: string; /** * * @type {WebitelContactsLookup} * @memberof WebitelContactsComment */ updated_by?: WebitelContactsLookup; /** * Version of the latest update. Numeric sequence. * @type {number} * @memberof WebitelContactsComment */ ver?: number; } //# sourceMappingURL=webitel-contacts-comment.d.ts.map