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
How confident the transcription engine was in transcribing this clip (from `0.0` to `1.0`).
[optional]
start_time_seconds
float
The start time of this clip within the recording, in seconds.
[optional]
end_time_seconds
float
The end time of this clip within the recording, in seconds.
[optional]
Example
frombandwidth.models.recording_transcription_clipimportRecordingTranscriptionClip# TODO update the JSON string belowjson="{}"# create an instance of RecordingTranscriptionClip from a JSON stringrecording_transcription_clip_instance=RecordingTranscriptionClip.from_json(json)
# print the JSON string representation of the objectprint(RecordingTranscriptionClip.to_json())
# convert the object into a dictrecording_transcription_clip_dict=recording_transcription_clip_instance.to_dict()
# create an instance of RecordingTranscriptionClip from a dictrecording_transcription_clip_from_dict=RecordingTranscriptionClip.from_dict(recording_transcription_clip_dict)