Webex · Schema

QueuesCountDTO_UserResponseWithUserProfile

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.
skillBased integer The count of skill-based queues.
agentBased integer The count of agent-based queues.
View JSON Schema on GitHub

JSON Schema

webex-queuescountdto-userresponsewithuserprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueuesCountDTO_UserResponseWithUserProfile",
  "title": "QueuesCountDTO_UserResponseWithUserProfile",
  "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."
    },
    "skillBased": {
      "type": "integer",
      "format": "int32",
      "description": "The count of skill-based queues."
    },
    "agentBased": {
      "type": "integer",
      "format": "int32",
      "description": "The count of agent-based queues."
    }
  }
}