Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 793 Bytes

CallTranscription.md

File metadata and controls

24 lines (18 loc) · 793 Bytes

Bandwidth::CallTranscription

Properties

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

Example

require 'bandwidth-sdk'

instance = Bandwidth::CallTranscription.new(
  detected_language: null,
  track: null,
  transcript: Hello World! This is an example.,
  confidence: 0.9
)