{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateInterpreterObject", "title": "UpdateInterpreterObject", "type": "object", "required": [ "languageCode1", "languageCode2" ], "properties": { "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": "marcus.tuchel@example.com", "description": "Email address of meeting interpreter. If not specified, it'll be an empty interpreter for the bi-directional language channel. Please note that multiple interpreters with different emails can be assigned to the same bi-directional language channel, but the same email cannot be assigned to more than one interpreter." }, "displayName": { "type": "string", "example": "Tuchel", "description": "Display name of meeting interpreter. If the interpreter is already an invitee of the meeting and it has a different display name, that invitee's display name will be overwritten by this attribute." }, "hostEmail": { "type": "string", "example": "brenda.song@example.com", "description": "Email address for the meeting host. This attribute should only be set if the user or application calling the API has the admin on-behalf-of scopes. When used, the admin may specify the email of a user in a site they manage to be the meeting host." }, "sendEmail": { "type": "boolean", "example": true, "description": "If `true`, send email to the interpreter." } } }