Class: Google::Apis::TexttospeechV1beta1::SynthesizeSpeechRequest

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

Overview

The top-level message sent by the client for the SynthesizeSpeech method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SynthesizeSpeechRequest

Returns a new instance of SynthesizeSpeechRequest.



196
197
198
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 196

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

Instance Attribute Details

#audio_configGoogle::Apis::TexttospeechV1beta1::AudioConfig

Description of audio data to be synthesized. Corresponds to the JSON property audioConfig



177
178
179
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 177

def audio_config
  @audio_config
end

#enable_time_pointingArray<String>

Whether and what timepoints are returned in the response. Corresponds to the JSON property enableTimePointing

Returns:

  • (Array<String>)


182
183
184
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 182

def enable_time_pointing
  @enable_time_pointing
end

#inputGoogle::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



189
190
191
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 189

def input
  @input
end

#voiceGoogle::Apis::TexttospeechV1beta1::VoiceSelectionParams

Description of which voice to use for a synthesis request. Corresponds to the JSON property voice



194
195
196
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 194

def voice
  @voice
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



201
202
203
204
205
206
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 201

def update!(**args)
  @audio_config = args[:audio_config] if args.key?(:audio_config)
  @enable_time_pointing = args[:enable_time_pointing] if args.key?(:enable_time_pointing)
  @input = args[:input] if args.key?(:input)
  @voice = args[:voice] if args.key?(:voice)
end