You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The programmable voice API transcription name. This name could be provided by the user when creating the transcription.
[optional]
transcription_url
str
A URL that may be used to retrieve the transcription itself. This points to the Get Call Transcription endpoint.
[optional]
Example
frombandwidth.models.call_transcription_metadataimportCallTranscriptionMetadata# TODO update the JSON string belowjson="{}"# create an instance of CallTranscriptionMetadata from a JSON stringcall_transcription_metadata_instance=CallTranscriptionMetadata.from_json(json)
# print the JSON string representation of the objectprint(CallTranscriptionMetadata.to_json())
# convert the object into a dictcall_transcription_metadata_dict=call_transcription_metadata_instance.to_dict()
# create an instance of CallTranscriptionMetadata from a dictcall_transcription_metadata_from_dict=CallTranscriptionMetadata.from_dict(call_transcription_metadata_dict)