Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

Transcription.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

Transcription

Properties

Name Type Description Notes
text str The transcribed text [optional]
confidence float The confidence on the recognized content, ranging from `0.0` to `1.0` with `1.0` being the highest confidence. [optional]

Example

from bandwidth.models.transcription import Transcription

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

# convert the object into a dict
transcription_dict = transcription_instance.to_dict()
# create an instance of Transcription from a dict
transcription_from_dict = Transcription.from_dict(transcription_dict)

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