Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 915 Bytes

BatchProcessorJobFinishedPayloadInput.md

File metadata and controls

24 lines (18 loc) · 915 Bytes

Daily::BatchProcessorJobFinishedPayloadInput

Properties

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

Example

require 'daily-ruby'

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