Webex · Schema
DECTHandsetList
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| numberOfHandsetsAssigned | number | Number of handsets associated. |
| numberOfLinesAssigned | number | Total number of lines assigned. |
| handsets | array | Array of `DECTHandsetItem` objects, each representing a handset with its associated details and lines. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DECTHandsetList",
"title": "DECTHandsetList",
"type": "object",
"required": [
"numberOfHandsetsAssigned",
"numberOfLinesAssigned",
"handsets"
],
"properties": {
"numberOfHandsetsAssigned": {
"type": "number",
"example": 1,
"description": "Number of handsets associated."
},
"numberOfLinesAssigned": {
"type": "number",
"example": 1,
"description": "Total number of lines assigned."
},
"handsets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DECTHandsetItem"
},
"description": "Array of `DECTHandsetItem` objects, each representing a handset with its associated details and lines."
}
}
}