TranscriptionConfig

Configuration for starting real-time transcription in a meeting.

Code Example:


val summary = SummaryConfig(
    true,                                     // enabled
    "Summarize the key discussion points"      // prompt
)
val config = TranscriptionConfig(
    "https://example.com/webhook", // webhook URL
    summary                        // summary config
)
meeting.startTranscription(config)

See also

Meeting.startTranscription()

Constructors

Link copied to clipboard
constructor(webHookUrl: String, summary: SummaryConfig)
Creates a new transcription configuration.