Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1 KB

File metadata and controls

26 lines (19 loc) · 1 KB

CallTranscription

Properties

Name Type Description Notes
detectedLanguage CallTranscriptionDetectedLanguageEnum [optional] [default to undefined]
track CallTranscriptionTrackEnum [optional] [default to undefined]
transcript string The transcription itself. [optional] [default to undefined]
confidence number How confident the transcription engine was in transcribing the associated audio (from `0` to `1`). [optional] [default to undefined]

Example

import { CallTranscription } from 'bandwidth-sdk';

const instance: CallTranscription = {
    detectedLanguage,
    track,
    transcript,
    confidence,
};

[Back to Model list] [Back to API list] [Back to README]