Webex · Schema

UpdateUserCallCaptionsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
userClosedCaptionsEnabled boolean Enable or disable user-level closed captions.
userTranscriptsEnabled boolean Enable or disable user-level transcripts.
useLocationSettingsEnabled boolean If `useLocationSettingsEnabled` is `true`, location settings will control the user's closed captions and transcripts. Otherwise, user-level settings are used.
View JSON Schema on GitHub

JSON Schema

webex-updateusercallcaptionsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateUserCallCaptionsObject",
  "title": "UpdateUserCallCaptionsObject",
  "type": "object",
  "properties": {
    "userClosedCaptionsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable or disable user-level closed captions."
    },
    "userTranscriptsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable or disable user-level transcripts."
    },
    "useLocationSettingsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "If `useLocationSettingsEnabled` is `true`, location settings will control the user's closed captions and transcripts. Otherwise, user-level settings are used."
    }
  }
}