Class: Google::Apis::SpeechV1beta1::SyncRecognizeResponse

Inherits:
Object
  • Object
show all
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

The only message returned to the client by SyncRecognize. method. It contains the result as zero or more sequential SpeechRecognitionResult messages.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SyncRecognizeResponse

Returns a new instance of SyncRecognizeResponse



469
470
471
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 469

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

Instance Attribute Details

#resultsArray<Google::Apis::SpeechV1beta1::SpeechRecognitionResult>

Output-only Sequential list of transcription results corresponding to sequential portions of audio. Corresponds to the JSON property results



467
468
469
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 467

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



474
475
476
# File 'generated/google/apis/speech_v1beta1/classes.rb', line 474

def update!(**args)
  @results = args[:results] if args.key?(:results)
end