Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.31 KB

RecordingTranscriptionMetadata.md

File metadata and controls

24 lines (18 loc) · 1.31 KB

Bandwidth::RecordingTranscriptionMetadata

Properties

Name Type Description Notes
id String The unique transcription ID [optional]
status String 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 Time The time that the transcription was completed [optional]
url String The URL of the transcription [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::RecordingTranscriptionMetadata.new(
  id: t-387bd648-18f3-4823-9d16-746bca0003c9,
  status: completed,
  completed_time: 2022-06-13T18:46:29.715Z,
  url: https://voice.bandwidth.com/api/v2/accounts/9900000/calls/c-15ac29a2-1331029c-2cb0-4a07-b215-b22865662d85/recordings/r-15ac29a2-1331029c-2cb0-4a07-b215-b22865662d85/transcription
)