Webex · Schema
RealtimeTranscriptsDTO
This is applicable/available when either AI Assistant/AI Quality Management add-on offer/license is added to the organization.
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | Used to toggle the state of the AI feature sub feature configuration from active to inactive and vice-versa. Mandatory for create/update operation. If the value is missing in response, the consumer sh |
| agentInclusionType | string | Provides information whether all or specific agents are selected for realtime transcripts. |
| queuesInclusionType | string | Provides information whether all or specific queues are selected for Real time transcription. If the value is missing in response, the consumer should assume a value as ALL. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RealtimeTranscriptsDTO",
"title": "RealtimeTranscriptsDTO",
"type": "object",
"description": "This is applicable/available when either AI Assistant/AI Quality Management add-on offer/license is added to the organization.",
"properties": {
"enable": {
"type": "boolean",
"description": "Used to toggle the state of the AI feature sub feature configuration from active to inactive and vice-versa. Mandatory for create/update operation. If the value is missing in response, the consumer should assume a value as false.",
"example": true
},
"agentInclusionType": {
"type": "string",
"deprecated": true,
"description": "Provides information whether all or specific agents are selected for realtime transcripts.",
"enum": [
"ALL",
"SPECIFIC"
],
"example": "ALL"
},
"queuesInclusionType": {
"type": "string",
"description": "Provides information whether all or specific queues are selected for Real time transcription. If the value is missing in response, the consumer should assume a value as ALL.",
"enum": [
"ALL",
"SPECIFIC"
],
"example": "ALL"
}
},
"required": [
"enable"
]
}