Class: Google::Apis::SpeechV1::RecognizeResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1::RecognizeResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/speech_v1/classes.rb,
generated/google/apis/speech_v1/representations.rb,
generated/google/apis/speech_v1/representations.rb
Overview
The only message returned to the client by the Recognize
method. It
contains the result as zero or more sequential SpeechRecognitionResult
messages.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(**args) ⇒ RecognizeResponse
constructor
A new instance of RecognizeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RecognizeResponse
Returns a new instance of RecognizeResponse
465 466 467 |
# File 'generated/google/apis/speech_v1/classes.rb', line 465 def initialize(**args) update!(**args) end |
Instance Attribute Details
#results ⇒ Array<Google::Apis::SpeechV1::SpeechRecognitionResult>
Output only. Sequential list of transcription results corresponding to
sequential portions of audio.
Corresponds to the JSON property results
463 464 465 |
# File 'generated/google/apis/speech_v1/classes.rb', line 463 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
470 471 472 |
# File 'generated/google/apis/speech_v1/classes.rb', line 470 def update!(**args) @results = args[:results] if args.key?(:results) end |