View Source ExAzureSpeech.SpeechToText.Responses.SpeechPhrase (ex_azure_speech v0.2.2)

Represents a valid Speech-To-Text API response.

Summary

Types

@type recognition_status() :: String.t()
@type t() :: %ExAzureSpeech.SpeechToText.Responses.SpeechPhrase{
  channel: term(),
  display_text: String.t(),
  duration: integer() | nil,
  id: String.t(),
  n_best: [ExAzureSpeech.SpeechToText.Responses.Evaluation.t()] | nil,
  offset: integer() | nil,
  primary_language:
    ExAzureSpeech.SpeechToText.Responses.PrimaryLanguage.t() | nil,
  recognition_status: recognition_status(),
  speaker_id: String.t() | nil
}