Webex · Schema

NoiseCancellationObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Enable/disable the Noise Cancellation.
allowEndUserOverrideEnabled boolean Enable/disable to preserve the existing values on the phone and not the value defined for the device setting.
View JSON Schema on GitHub

JSON Schema

webex-noisecancellationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NoiseCancellationObject",
  "title": "NoiseCancellationObject",
  "type": "object",
  "required": [
    "enabled",
    "allowEndUserOverrideEnabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable/disable the Noise Cancellation."
    },
    "allowEndUserOverrideEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable/disable to preserve the existing values on the phone and not the value defined for the device setting."
    }
  }
}