Class: Google::Apis::SpeechV1::LongRunningRecognizeResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1::LongRunningRecognizeResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/speech_v1/classes.rb,
lib/google/apis/speech_v1/representations.rb,
lib/google/apis/speech_v1/representations.rb
Overview
The only message returned to the client by the LongRunningRecognize method.
It contains the result as zero or more sequential SpeechRecognitionResult
messages. It is included in the result.response field of the Operation
returned by the GetOperation call of the google::longrunning::Operations
service.
Instance Attribute Summary collapse
-
#results ⇒ Array<Google::Apis::SpeechV1::SpeechRecognitionResult>
Sequential list of transcription results corresponding to sequential portions of audio.
-
#total_billed_time ⇒ String
When available, billed audio seconds for the corresponding request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LongRunningRecognizeResponse
constructor
A new instance of LongRunningRecognizeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LongRunningRecognizeResponse
Returns a new instance of LongRunningRecognizeResponse.
145 146 147 |
# File 'lib/google/apis/speech_v1/classes.rb', line 145 def initialize(**args) update!(**args) end |
Instance Attribute Details
#results ⇒ Array<Google::Apis::SpeechV1::SpeechRecognitionResult>
Sequential list of transcription results corresponding to sequential portions
of audio.
Corresponds to the JSON property results
138 139 140 |
# File 'lib/google/apis/speech_v1/classes.rb', line 138 def results @results end |
#total_billed_time ⇒ String
When available, billed audio seconds for the corresponding request.
Corresponds to the JSON property totalBilledTime
143 144 145 |
# File 'lib/google/apis/speech_v1/classes.rb', line 143 def total_billed_time @total_billed_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
150 151 152 153 |
# File 'lib/google/apis/speech_v1/classes.rb', line 150 def update!(**args) @results = args[:results] if args.key?(:results) @total_billed_time = args[:total_billed_time] if args.key?(:total_billed_time) end |