Class: Google::Apis::TexttospeechV1::Voice
- Inherits:
-
Object
- Object
- Google::Apis::TexttospeechV1::Voice
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/texttospeech_v1/classes.rb,
lib/google/apis/texttospeech_v1/representations.rb,
lib/google/apis/texttospeech_v1/representations.rb
Overview
Description of a voice supported by the TTS service.
Instance Attribute Summary collapse
-
#language_codes ⇒ Array<String>
The languages that this voice supports, expressed as BCP-47 language tags (e.g. "en-US", "es-419", "cmn-tw").
-
#name ⇒ String
The name of this voice.
-
#natural_sample_rate_hertz ⇒ Fixnum
The natural sample rate (in hertz) for this voice.
-
#ssml_gender ⇒ String
The gender of this voice.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Voice
constructor
A new instance of Voice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Voice
Returns a new instance of Voice.
510 511 512 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 510 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language_codes ⇒ Array<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
493 494 495 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 493 def language_codes @language_codes end |
#name ⇒ String
The name of this voice. Each distinct voice has a unique name.
Corresponds to the JSON property name
498 499 500 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 498 def name @name end |
#natural_sample_rate_hertz ⇒ Fixnum
The natural sample rate (in hertz) for this voice.
Corresponds to the JSON property naturalSampleRateHertz
503 504 505 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 503 def natural_sample_rate_hertz @natural_sample_rate_hertz end |
#ssml_gender ⇒ String
The gender of this voice.
Corresponds to the JSON property ssmlGender
508 509 510 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 508 def ssml_gender @ssml_gender end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
515 516 517 518 519 520 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 515 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 |