Skip to main content

v2 -> v3

Call Transcription Model

export interface CallTranscription {
/**
*
* @type {CallTranscriptionDetectedLanguageEnum}
* @memberof CallTranscription
*/
detectedLanguage?: CallTranscriptionDetectedLanguageEnum;
/**
*
* @type {CallTranscriptionTrackEnum}
* @memberof CallTranscription
*/
track?: CallTranscriptionTrackEnum;
/**
* The transcription itself.
* @type {string}
* @memberof CallTranscription
*/
transcript?: string;
/**
* How confident the transcription engine was in transcribing the associated audio (from `0` to `1`).
* @type {number}
* @memberof CallTranscription
*/
confidence?: number;
}