Class: Google::Apis::SpeechV1::LongRunningRecognizeResponse

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 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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LongRunningRecognizeResponse

Returns a new instance of LongRunningRecognizeResponse.



128
129
130
# File 'generated/google/apis/speech_v1/classes.rb', line 128

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



126
127
128
# File 'generated/google/apis/speech_v1/classes.rb', line 126

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



133
134
135
# File 'generated/google/apis/speech_v1/classes.rb', line 133

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