/** * 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 { WebitelChatChatInvite } from './webitel-chat-chat-invite'; import { WebitelChatPeer } from './webitel-chat-peer'; /** * The Chat info. Alias: participant, subscriber, member, peer, leg. * @export * @interface WebitelChatChat */ export interface WebitelChatChat { /** * Context. Variables. * @type {{ [key: string]: string; }} * @memberof WebitelChatChat */ context?: { [key: string]: string; }; /** * [D]omain[C]omponent primary ID. * @type {string} * @memberof WebitelChatChat */ dc?: string; /** * Unique identifier for this chat. [FROM] Member / Channel ID. // [TO] Group. Conversation ID. string chat_id = 2; * @type {string} * @memberof WebitelChatChat */ id?: string; /** * * @type {WebitelChatChatInvite} * @memberof WebitelChatChat */ invite?: WebitelChatChatInvite; /** * OPTIONAL. A non-zero value indicates that the participant has joined the chat. * @type {string} * @memberof WebitelChatChat */ join?: string; /** * * @type {string} * @memberof WebitelChatChat */ left?: string; /** * * @type {WebitelChatPeer} * @memberof WebitelChatChat */ peer?: WebitelChatPeer; /** * * @type {WebitelChatPeer} * @memberof WebitelChatChat */ queue?: WebitelChatPeer; /** * [TO]: Chat title. * @type {string} * @memberof WebitelChatChat */ title?: string; /** * * @type {WebitelChatPeer} * @memberof WebitelChatChat */ via?: WebitelChatPeer; } //# sourceMappingURL=webitel-chat-chat.d.ts.map