Class: Google::Apis::SpeechV1::RecognizeResponse

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

Constructor Details

#initialize(**args) ⇒ RecognizeResponse

Returns a new instance of RecognizeResponse.



502
503
504
# File 'generated/google/apis/speech_v1/classes.rb', line 502

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

Instance Attribute Details

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

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



500
501
502
# File 'generated/google/apis/speech_v1/classes.rb', line 500

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



507
508
509
# File 'generated/google/apis/speech_v1/classes.rb', line 507

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