Class: Google::Apis::SpeechV1p1beta1::RecognizeResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/speech_v1p1beta1/classes.rb,
lib/google/apis/speech_v1p1beta1/representations.rb,
lib/google/apis/speech_v1p1beta1/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.



930
931
932
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 930

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

Instance Attribute Details

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

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



923
924
925
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 923

def results
  @results
end

#total_billed_timeString

When available, billed audio seconds for the corresponding request. Corresponds to the JSON property totalBilledTime

Returns:

  • (String)


928
929
930
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 928

def total_billed_time
  @total_billed_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



935
936
937
938
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 935

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