Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1VoiceSelectionParams

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

Overview

Description of which voice to use for speech synthesis.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1VoiceSelectionParams

Returns a new instance of GoogleCloudDialogflowCxV3beta1VoiceSelectionParams.



13837
13838
13839
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13837

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

Instance Attribute Details

#nameString

Optional. The name of the voice. If not set, the service will choose a voice based on the other parameters such as language_code and ssml_gender. For the list of available voices, please refer to Supported voices and languages. Corresponds to the JSON property name

Returns:

  • (String)


13826
13827
13828
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13826

def name
  @name
end

#ssml_genderString

Optional. The preferred gender of the voice. If not set, the service will choose a voice based on the other parameters such as language_code and name. Note that this is only a preference, not requirement. If a voice of the appropriate gender is not available, the synthesizer should substitute a voice with a different gender rather than failing the request. Corresponds to the JSON property ssmlGender

Returns:

  • (String)


13835
13836
13837
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13835

def ssml_gender
  @ssml_gender
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13842
13843
13844
13845
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13842

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @ssml_gender = args[:ssml_gender] if args.key?(:ssml_gender)
end