Webex · Schema
DoNotDisturbInfo
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | `true` if the Do Not Disturb feature is enabled. |
| ringSplashEnabled | boolean | Enables a Ring Reminder to play a brief tone on your desktop phone when you receive incoming calls. |
| webexGoOverrideEnabled | boolean | `true` if a mobile device will still ring even if Do Not Disturb is enabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DoNotDisturbInfo",
"title": "DoNotDisturbInfo",
"type": "object",
"required": [
"enabled",
"ringSplashEnabled",
"webexGoOverrideEnabled"
],
"properties": {
"enabled": {
"type": "boolean",
"example": true,
"description": "`true` if the Do Not Disturb feature is enabled."
},
"ringSplashEnabled": {
"type": "boolean",
"description": "Enables a Ring Reminder to play a brief tone on your desktop phone when you receive incoming calls."
},
"webexGoOverrideEnabled": {
"type": "boolean",
"description": "`true` if a mobile device will still ring even if Do Not Disturb is enabled."
}
}
}