Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.47 KB

GetTranscriptInfo200Response.md

File metadata and controls

32 lines (26 loc) · 1.47 KB

Daily::GetTranscriptInfo200Response

Properties

Name Type Description Notes
transcript_id String A unique, opaque ID for this object. You can use this ID in API calls, and in paginated list operations. [optional]
domain_id String The Id of the domain. [optional]
room_id String The id of the room. [optional]
mtg_session_id String The meeting session ID for this transcription.mtgSessionId. [optional]
status String [optional]
duration Integer How many seconds long the transcription is, approximately. [optional]
out_params GetTranscriptInfo200ResponseOutParams [optional]
error String If `status` is `t_error`, this provide the description of the error, otherwise `null`. [optional]

Example

require 'daily-ruby'

instance = Daily::GetTranscriptInfo200Response.new(
  transcript_id: 0cb313e1-211f-4be0-833d-8c7305b19902,
  domain_id: null,
  room_id: 1a5afbf4-211f-4be0-833d-8c7305b19902,
  mtg_session_id: 257764e6-c74e-4c30-944a-a887a03173a3,
  status: t_finished,
  duration: 277,
  out_params: null,
  error: Failed to upload Vtt
)