Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

Transcription

Properties

Name Type Description Notes
speaker int Zero-based index identifying the speaker. [optional]
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]