v2 -> v3
Call Transcription Model
- v2
 - v3
 
export interface CallTranscription {
    /**
     * The detected language for this transcription.
     * @type {string}
     * @memberof CallTranscription
     */
    detectedLanguage?: CallTranscriptionDetectedLanguageEnum;
    /**
     * Which `track` this transcription is derived from.
     * @type {string}
     * @memberof CallTranscription
     */
    track?: CallTranscriptionTrackEnum;
    /**
     * The transcription itself.
     * @type {string}
     * @memberof CallTranscription
     */
    text?: string;
    /**
     * How confident the transcription engine was in transcribing the associated audio (from `0` to `1`).
     * @type {number}
     * @memberof CallTranscription
     */
    confidence?: number;
}
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;
}