Webex · Schema
GetInterpreterObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for meeting interpreter. |
| languageCode1 | string | The pair of `languageCode1` and `languageCode2` form a bi-directional simultaneous interpretation language channel. The language codes conform with [ISO 639-1](https://en.wikipedia.org/wiki/List_of_IS |
| languageCode2 | string | The pair of `languageCode1` and `languageCode2` form a bi-directional simultaneous interpretation language channel. The language codes conform with [ISO 639-1](https://en.wikipedia.org/wiki/List_of_IS |
| string | Email address of meeting interpreter. | |
| displayName | string | Display name of meeting interpreter. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetInterpreterObject",
"title": "GetInterpreterObject",
"type": "object",
"required": [
"id",
"languageCode1",
"languageCode2"
],
"properties": {
"id": {
"type": "string",
"example": "OGQ0OGRiM2U3ZTAxNDZiMGFjYzJjMzYxNDNmNGZhN2RfZTA5MTJiZDBjNWVlNDA4YjgxMTZlMjU4Zjg2NWIzZmM",
"description": "Unique identifier for meeting interpreter."
},
"languageCode1": {
"type": "string",
"example": "en",
"description": "The pair of `languageCode1` and `languageCode2` form a bi-directional simultaneous interpretation language channel. The language codes conform with [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)."
},
"languageCode2": {
"type": "string",
"example": "de",
"description": "The pair of `languageCode1` and `languageCode2` form a bi-directional simultaneous interpretation language channel. The language codes conform with [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)."
},
"email": {
"type": "string",
"example": "[email protected]",
"description": "Email address of meeting interpreter."
},
"displayName": {
"type": "string",
"example": "Hoffmann",
"description": "Display name of meeting interpreter."
}
}
}