/** * 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 { WebitelChatChat } from './webitel-chat-chat'; import { WebitelChatMessage } from './webitel-chat-message'; import { WebitelChatPeer } from './webitel-chat-peer'; /** * Chat Dialog. Conversation info. * @export * @interface WebitelChatDialog */ export interface WebitelChatDialog { /** * * @type {string} * @memberof WebitelChatDialog */ closed?: string; /** * * @type {string} * @memberof WebitelChatDialog */ closed_cause?: string; /** * Context. Variables. Environment. * @type {{ [key: string]: string; }} * @memberof WebitelChatDialog */ context?: { [key: string]: string; }; /** * Timestamp of the latest activity. * @type {string} * @memberof WebitelChatDialog */ date?: string; /** * [D]omain[C]omponent primary ID. * @type {string} * @memberof WebitelChatDialog */ dc?: string; /** * * @type {WebitelChatPeer} * @memberof WebitelChatDialog */ from?: WebitelChatPeer; /** * The Conversation thread unique ID. * @type {string} * @memberof WebitelChatDialog */ id?: string; /** * [TO]: Participants. Leg[A+]. Schema / Agent. * @type {Array} * @memberof WebitelChatDialog */ members?: Array; /** * * @type {WebitelChatMessage} * @memberof WebitelChatDialog */ message?: WebitelChatMessage; /** * * @type {WebitelChatPeer} * @memberof WebitelChatDialog */ queue?: WebitelChatPeer; /** * Timestamp when dialog started. * @type {string} * @memberof WebitelChatDialog */ started?: string; /** * Title of the dialog. * @type {string} * @memberof WebitelChatDialog */ title?: string; /** * * @type {WebitelChatPeer} * @memberof WebitelChatDialog */ via?: WebitelChatPeer; } //# sourceMappingURL=webitel-chat-dialog.d.ts.map