Class: Google::Apis::SpeechV1beta1::SyncRecognizeResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1beta1::SyncRecognizeResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/speech_v1beta1/classes.rb,
generated/google/apis/speech_v1beta1/representations.rb,
generated/google/apis/speech_v1beta1/representations.rb
Overview
SyncRecognizeResponse
is the only message returned to the client by
SyncRecognize
. It contains the result as zero or more sequential
SpeechRecognitionResult
messages.
Instance Attribute Summary collapse
-
#results ⇒ Array<Google::Apis::SpeechV1beta1::SpeechRecognitionResult>
[Output-only] Sequential list of transcription results corresponding to sequential portions of audio.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SyncRecognizeResponse
constructor
A new instance of SyncRecognizeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SyncRecognizeResponse
Returns a new instance of SyncRecognizeResponse.
445 446 447 |
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 445 def initialize(**args) update!(**args) end |
Instance Attribute Details
#results ⇒ Array<Google::Apis::SpeechV1beta1::SpeechRecognitionResult>
[Output-only] Sequential list of transcription results corresponding to
sequential portions of audio.
Corresponds to the JSON property results
443 444 445 |
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 443 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
450 451 452 |
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 450 def update!(**args) @results = args[:results] if args.key?(:results) end |