Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 942 Bytes

BatchProcessorErrorPayloadInput.md

File metadata and controls

24 lines (18 loc) · 942 Bytes

Daily::BatchProcessorErrorPayloadInput

Properties

Name Type Description Notes
source_type String The source type describing the input of the job. [optional]
uri String If the `sourceType` is `uri` or `transcriptUri`, this field represents the uri to access the content (transcript, video or audio file). [optional]
recording_id String If the `sourceType` is `recordingId`, this field will be present containing the recording ID provided. [optional]
language String If the `sourceType` is `uri`, this field represents the BCP-47 language of the transcript. [optional]

Example

require 'daily-ruby'

instance = Daily::BatchProcessorErrorPayloadInput.new(
  source_type: null,
  uri: null,
  recording_id: null,
  language: null
)