Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.43 KB

CallTranscriptionMetadata.md

File metadata and controls

31 lines (22 loc) · 1.43 KB

CallTranscriptionMetadata

Properties

Name Type Description Notes
transcription_id str The programmable voice API transcription ID. [optional]
transcription_name str 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

from bandwidth.models.call_transcription_metadata import CallTranscriptionMetadata

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

# convert the object into a dict
call_transcription_metadata_dict = call_transcription_metadata_instance.to_dict()
# create an instance of CallTranscriptionMetadata from a dict
call_transcription_metadata_from_dict = CallTranscriptionMetadata.from_dict(call_transcription_metadata_dict)

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