Class: Google::Cloud::Dialogflow::CX::V3::TextToSpeechSettings
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::CX::V3::TextToSpeechSettings
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/cx/v3/audio_config.rb
Overview
Settings related to speech synthesizing.
Defined Under Namespace
Classes: SynthesizeSpeechConfigsEntry
Instance Attribute Summary collapse
-
#synthesize_speech_configs ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Dialogflow::CX::V3::SynthesizeSpeechConfig}
Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/cx/docs/reference/language) to SynthesizeSpeechConfig.
Instance Attribute Details
#synthesize_speech_configs ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Dialogflow::CX::V3::SynthesizeSpeechConfig}
Returns Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/cx/docs/reference/language) to SynthesizeSpeechConfig.
These settings affect:
The phone gateway synthesize configuration set via Agent.text_to_speech_settings.
How speech is synthesized when invoking session APIs. Agent.text_to_speech_settings only applies if OutputAudioConfig.synthesize_speech_config is not specified.
249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/audio_config.rb', line 249 class TextToSpeechSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Dialogflow::CX::V3::SynthesizeSpeechConfig] class SynthesizeSpeechConfigsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |