Class: Google::Apis::TexttospeechV1::Voice

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

Overview

Description of a voice supported by the TTS service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Voice

Returns a new instance of Voice.



227
228
229
# File 'generated/google/apis/texttospeech_v1/classes.rb', line 227

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

Instance Attribute Details

#language_codesArray<String>

The languages that this voice supports, expressed as BCP-47 language tags (e.g. "en-US", "es-419", "cmn-tw"). Corresponds to the JSON property languageCodes

Returns:

  • (Array<String>)


210
211
212
# File 'generated/google/apis/texttospeech_v1/classes.rb', line 210

def language_codes
  @language_codes
end

#nameString

The name of this voice. Each distinct voice has a unique name. Corresponds to the JSON property name

Returns:

  • (String)


215
216
217
# File 'generated/google/apis/texttospeech_v1/classes.rb', line 215

def name
  @name
end

#natural_sample_rate_hertzFixnum

The natural sample rate (in hertz) for this voice. Corresponds to the JSON property naturalSampleRateHertz

Returns:

  • (Fixnum)


220
221
222
# File 'generated/google/apis/texttospeech_v1/classes.rb', line 220

def natural_sample_rate_hertz
  @natural_sample_rate_hertz
end

#ssml_genderString

The gender of this voice. Corresponds to the JSON property ssmlGender

Returns:

  • (String)


225
226
227
# File 'generated/google/apis/texttospeech_v1/classes.rb', line 225

def ssml_gender
  @ssml_gender
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



232
233
234
235
236
237
# File 'generated/google/apis/texttospeech_v1/classes.rb', line 232

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