Webex · Schema

UpdateMeetingSimultaneousInterpretationObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Whether or not simultaneous interpretation is enabled.
interpreters array Interpreters for meeting.
View JSON Schema on GitHub

JSON Schema

webex-updatemeetingsimultaneousinterpretationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateMeetingSimultaneousInterpretationObject",
  "title": "UpdateMeetingSimultaneousInterpretationObject",
  "type": "object",
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether or not simultaneous interpretation is enabled."
    },
    "interpreters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/InterpreterObjectForSimultaneousInterpretationOfCreateOrUpdateMeeting"
      },
      "description": "Interpreters for meeting."
    }
  }
}