Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

CallTranscription.md

File metadata and controls

32 lines (23 loc) · 1.3 KB

CallTranscription

Properties

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

Example

from bandwidth.models.call_transcription import CallTranscription

# TODO update the JSON string below
json = "{}"
# create an instance of CallTranscription from a JSON string
call_transcription_instance = CallTranscription.from_json(json)
# print the JSON string representation of the object
print(CallTranscription.to_json())

# convert the object into a dict
call_transcription_dict = call_transcription_instance.to_dict()
# create an instance of CallTranscription from a dict
call_transcription_from_dict = CallTranscription.from_dict(call_transcription_dict)

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