Webex · Schema

QueuesCountDTO

The count of each type of Contact Service Queues that the user is assigned to.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
teamBased integer The count of team-based queues assigned to the user.
skillBased integer The count of skill-based queues assigned to the user.
agentBased integer The count of agent-based queues assigned to the user.
View JSON Schema on GitHub

JSON Schema

webex-queuescountdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueuesCountDTO",
  "title": "QueuesCountDTO",
  "type": "object",
  "description": "The count of each type of Contact Service Queues that the user is assigned to.\n",
  "example": {
    "teamBased": 0,
    "skillBased": 0,
    "agentBased": 0
  },
  "properties": {
    "teamBased": {
      "type": "integer",
      "format": "int32",
      "description": "The count of team-based queues assigned to the user."
    },
    "skillBased": {
      "type": "integer",
      "format": "int32",
      "description": "The count of skill-based queues assigned to the user."
    },
    "agentBased": {
      "type": "integer",
      "format": "int32",
      "description": "The count of agent-based queues assigned to the user."
    }
  }
}