| Name |
Type |
Description |
Notes |
| callbackUrl |
string |
The URL to send the TranscriptionAvailable event to. You should not include sensitive or personally-identifiable information in the callbackUrl field! Always use the proper username and password fields for authorization. |
[optional] [default to undefined] |
| callbackMethod |
CallbackMethodEnum |
|
[optional] [default to undefined] |
| username |
string |
Basic auth username. |
[optional] [default to undefined] |
| password |
string |
Basic auth password. |
[optional] [default to undefined] |
| tag |
string |
(optional) The tag specified on call creation. If no tag was specified or it was previously cleared, this field will not be present. |
[optional] [default to undefined] |
| callbackTimeout |
number |
This is the timeout (in seconds) to use when delivering the webhook to `callbackUrl`. Can be any numeric value (including decimals) between 1 and 25. |
[optional] [default to 15] |
| detectLanguage |
boolean |
A boolean value to indicate that the recording may not be in English, and the transcription service will need to detect the dominant language the recording is in and transcribe accordingly. Current supported languages are English, French, and Spanish. |
[optional] [default to false] |
import { TranscribeRecording } from 'bandwidth-sdk';
const instance: TranscribeRecording = {
callbackUrl,
callbackMethod,
username,
password,
tag,
callbackTimeout,
detectLanguage,
};
[Back to Model list] [Back to API list] [Back to README]