Webex · Schema
GetPersonCallbackNumberDependenciesObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| isLocationEcbnDefault | boolean | The default emergency callback number for the location when `isLocationEcbnDefault` is true. |
| isSelfEcbnDefault | boolean | The default emergency callback number for the person when `isSelfEcbnDefault` is true. |
| dependentMemberCount | number | Number of members using this person as their emergency callback number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetPersonCallbackNumberDependenciesObject",
"title": "GetPersonCallbackNumberDependenciesObject",
"type": "object",
"required": [
"isLocationEcbnDefault",
"isSelfEcbnDefault",
"dependentMemberCount"
],
"properties": {
"isLocationEcbnDefault": {
"type": "boolean",
"example": true,
"description": "The default emergency callback number for the location when `isLocationEcbnDefault` is true."
},
"isSelfEcbnDefault": {
"type": "boolean",
"description": "The default emergency callback number for the person when `isSelfEcbnDefault` is true."
},
"dependentMemberCount": {
"type": "number",
"description": "Number of members using this person as their emergency callback number."
}
}
}