Webex · Schema

SentimentAnalysisDTO

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 Sentiment Analysis configuration from active to inactive and vice-versa. Mandatory for create/update operation. If the value is missing in response, the consumer should
queuesInclusionType string Provides information whether all or specific queues are selected for Sentiment Analysis. If the value is missing in response, the consumer should assume a value as ALL.
View JSON Schema on GitHub

JSON Schema

webex-sentimentanalysisdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SentimentAnalysisDTO",
  "title": "SentimentAnalysisDTO",
  "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 Sentiment Analysis  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
    },
    "queuesInclusionType": {
      "type": "string",
      "description": "Provides information whether all or specific queues are selected for Sentiment Analysis. If the value is missing in response, the consumer should assume a value as ALL.",
      "enum": [
        "ALL",
        "SPECIFIC"
      ],
      "example": "ALL"
    }
  },
  "required": [
    "enable"
  ]
}