Class: Google::Apis::TexttospeechV1::SynthesizeLongAudioMetadata
- Inherits:
-
Object
- Object
- Google::Apis::TexttospeechV1::SynthesizeLongAudioMetadata
- 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
Metadata for response returned by the SynthesizeLongAudio
method.
Instance Attribute Summary collapse
-
#last_update_time ⇒ String
Deprecated.
-
#progress_percentage ⇒ Float
The progress of the most recent processing update in percentage, ie.
-
#start_time ⇒ String
Time when the request was received.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SynthesizeLongAudioMetadata
constructor
A new instance of SynthesizeLongAudioMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SynthesizeLongAudioMetadata
Returns a new instance of SynthesizeLongAudioMetadata.
480 481 482 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 480 def initialize(**args) update!(**args) end |
Instance Attribute Details
#last_update_time ⇒ String
Deprecated. Do not use.
Corresponds to the JSON property lastUpdateTime
468 469 470 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 468 def last_update_time @last_update_time end |
#progress_percentage ⇒ Float
The progress of the most recent processing update in percentage, ie. 70.0%.
Corresponds to the JSON property progressPercentage
473 474 475 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 473 def progress_percentage @progress_percentage end |
#start_time ⇒ String
Time when the request was received.
Corresponds to the JSON property startTime
478 479 480 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 478 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
485 486 487 488 489 |
# File 'lib/google/apis/texttospeech_v1/classes.rb', line 485 def update!(**args) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @progress_percentage = args[:progress_percentage] if args.key?(:progress_percentage) @start_time = args[:start_time] if args.key?(:start_time) end |