Webex · Schema
LocalGatewayUsageCount
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| pstnConnectionCount | number | The count where the local gateway is used as a PSTN Connection setting. |
| callToExtensionCount | number | The count where the given local gateway is used as call to extension setting. |
| dialPlanCount | number | The count where the given local gateway is used by the dial plan. |
| routeGroupCount | number | The count where the given local gateway is used by the route group. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LocalGatewayUsageCount",
"title": "LocalGatewayUsageCount",
"type": "object",
"required": [
"pstnConnectionCount",
"callToExtensionCount",
"dialPlanCount",
"routeGroupCount"
],
"properties": {
"pstnConnectionCount": {
"type": "number",
"example": 1,
"description": "The count where the local gateway is used as a PSTN Connection setting."
},
"callToExtensionCount": {
"type": "number",
"example": 1,
"description": "The count where the given local gateway is used as call to extension setting."
},
"dialPlanCount": {
"type": "number",
"example": 1,
"description": "The count where the given local gateway is used by the dial plan."
},
"routeGroupCount": {
"type": "number",
"example": 1,
"description": "The count where the given local gateway is used by the route group."
}
}
}