Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2OutputAudioConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb

Overview

Instructs the speech synthesizer on how to generate the output audio content. If this audio config is supplied in a request, it overrides all existing text-to-speech settings applied to the agent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2OutputAudioConfig

Returns a new instance of GoogleCloudDialogflowV2OutputAudioConfig.



2808
2809
2810
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2808

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#audio_encodingString

Required. Audio encoding of the synthesized audio content. Corresponds to the JSON property audioEncoding

Returns:

  • (String)


2792
2793
2794
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2792

def audio_encoding
  @audio_encoding
end

#sample_rate_hertzFixnum

Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality). Corresponds to the JSON property sampleRateHertz

Returns:

  • (Fixnum)


2801
2802
2803
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2801

def sample_rate_hertz
  @sample_rate_hertz
end

#synthesize_speech_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2SynthesizeSpeechConfig

Configuration of how speech should be synthesized. Corresponds to the JSON property synthesizeSpeechConfig



2806
2807
2808
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2806

def synthesize_speech_config
  @synthesize_speech_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2813
2814
2815
2816
2817
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2813

def update!(**args)
  @audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding)
  @sample_rate_hertz = args[:sample_rate_hertz] if args.key?(:sample_rate_hertz)
  @synthesize_speech_config = args[:synthesize_speech_config] if args.key?(:synthesize_speech_config)
end