If the recording was transcribed, metadata about the transcription
Name | Type | Description | Notes |
---|---|---|---|
id | str | The unique transcription ID | [optional] |
status | str | The current status of the process. For recording, current possible values are 'processing', 'partial', 'complete', 'deleted', and 'error'. For transcriptions, current possible values are 'none', 'processing', 'available', 'error', 'timeout', 'file-size-too-big', and 'file-size-too-small'. Additional states may be added in the future, so your application must be tolerant of unknown values. | [optional] |
completed_time | datetime | The time that the transcription was completed | [optional] |
url | str | The URL of the transcription | [optional] |
from bandwidth.models.recording_transcription_metadata import RecordingTranscriptionMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of RecordingTranscriptionMetadata from a JSON string
recording_transcription_metadata_instance = RecordingTranscriptionMetadata.from_json(json)
# print the JSON string representation of the object
print(RecordingTranscriptionMetadata.to_json())
# convert the object into a dict
recording_transcription_metadata_dict = recording_transcription_metadata_instance.to_dict()
# create an instance of RecordingTranscriptionMetadata from a dict
recording_transcription_metadata_from_dict = RecordingTranscriptionMetadata.from_dict(recording_transcription_metadata_dict)