Class: Google::Apis::TexttospeechV1beta1::SynthesizeSpeechRequest
- Inherits:
-
Object
- Object
- Google::Apis::TexttospeechV1beta1::SynthesizeSpeechRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/texttospeech_v1beta1/classes.rb,
generated/google/apis/texttospeech_v1beta1/representations.rb,
generated/google/apis/texttospeech_v1beta1/representations.rb
Overview
The top-level message sent by the client for the SynthesizeSpeech
method.
Instance Attribute Summary collapse
-
#audio_config ⇒ Google::Apis::TexttospeechV1beta1::AudioConfig
Description of audio data to be synthesized.
-
#input ⇒ Google::Apis::TexttospeechV1beta1::SynthesisInput
Contains text input to be synthesized.
-
#voice ⇒ Google::Apis::TexttospeechV1beta1::VoiceSelectionParams
Description of which voice to use for a synthesis request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SynthesizeSpeechRequest
constructor
A new instance of SynthesizeSpeechRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SynthesizeSpeechRequest
Returns a new instance of SynthesizeSpeechRequest
157 158 159 |
# File 'generated/google/apis/texttospeech_v1beta1/classes.rb', line 157 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_config ⇒ Google::Apis::TexttospeechV1beta1::AudioConfig
Description of audio data to be synthesized.
Corresponds to the JSON property audioConfig
142 143 144 |
# File 'generated/google/apis/texttospeech_v1beta1/classes.rb', line 142 def audio_config @audio_config end |
#input ⇒ Google::Apis::TexttospeechV1beta1::SynthesisInput
Contains text input to be synthesized. Either text
or ssml
must be
supplied. Supplying both or neither returns
google.rpc.Code.INVALID_ARGUMENT. The input size is limited to 5000
characters.
Corresponds to the JSON property input
150 151 152 |
# File 'generated/google/apis/texttospeech_v1beta1/classes.rb', line 150 def input @input end |
#voice ⇒ Google::Apis::TexttospeechV1beta1::VoiceSelectionParams
Description of which voice to use for a synthesis request.
Corresponds to the JSON property voice
155 156 157 |
# File 'generated/google/apis/texttospeech_v1beta1/classes.rb', line 155 def voice @voice end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
162 163 164 165 166 |
# File 'generated/google/apis/texttospeech_v1beta1/classes.rb', line 162 def update!(**args) @audio_config = args[:audio_config] if args.key?(:audio_config) @input = args[:input] if args.key?(:input) @voice = args[:voice] if args.key?(:voice) end |