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 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]
media_url
str
The URL that can be used to download the recording. Only present if the recording is finished and may be downloaded.
[optional]
recording_name
str
A name to identify this recording.
[optional]
Example
frombandwidth.models.conference_recording_metadataimportConferenceRecordingMetadata# TODO update the JSON string belowjson="{}"# create an instance of ConferenceRecordingMetadata from a JSON stringconference_recording_metadata_instance=ConferenceRecordingMetadata.from_json(json)
# print the JSON string representation of the objectprint(ConferenceRecordingMetadata.to_json())
# convert the object into a dictconference_recording_metadata_dict=conference_recording_metadata_instance.to_dict()
# create an instance of ConferenceRecordingMetadata from a dictconference_recording_metadata_from_dict=ConferenceRecordingMetadata.from_dict(conference_recording_metadata_dict)