Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.69 KB

TranscriptionProperties.md

File metadata and controls

34 lines (28 loc) · 1.69 KB

Daily::TranscriptionProperties

Properties

Name Type Description Notes
language String See Deepgram's documentation for `language` [optional]
model String See Deepgram's documentation for `model` [optional]
tier String See Deepgram's documentation for `tier` [optional]
profanity_filter Boolean See Deepgram's documentation for `profanity filter` [optional]
punctuate Boolean See Deepgram's documentation for `punctuate` [optional]
endpointing TranscriptionPropertiesEndpointing [optional]
redact TranscriptionPropertiesRedact [optional]
extra Object Specify any Deepgram parameters. See Deepgram's documentation for available streaming options [optional]
include_raw_response Boolean Whether Deepgram's raw response should be included in all transcription messages [optional]

Example

require 'daily-ruby'

instance = Daily::TranscriptionProperties.new(
  language: null,
  model: null,
  tier: null,
  profanity_filter: null,
  punctuate: null,
  endpointing: null,
  redact: null,
  extra: null,
  include_raw_response: null
)