Webex · Schema
WrapUpReasonDetailsObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the wrap-up reason. |
| description | string | Description of the wrap-up reason. |
| defaultWrapupQueuesCount | number | Number of queues assigned to the wrap-up reason. |
| queues | array | List of queues assigned to the wrap-up reason. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WrapUpReasonDetailsObject",
"title": "WrapUpReasonDetailsObject",
"type": "object",
"required": [
"name",
"defaultWrapupQueuesCount",
"queues"
],
"properties": {
"name": {
"type": "string",
"example": "Wrap up reason 1",
"description": "Name of the wrap-up reason."
},
"description": {
"type": "string",
"example": "This is a description for wrap-up reason 1",
"description": "Description of the wrap-up reason."
},
"defaultWrapupQueuesCount": {
"type": "number",
"example": 1,
"description": "Number of queues assigned to the wrap-up reason."
},
"queues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/QueueObjectWithDefaultEnabled"
},
"description": "List of queues assigned to the wrap-up reason."
}
}
}