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.



1017
1018
1019
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1017

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

Instance Attribute Details

#request_idFixnum

The ID associated with the request. This is a unique ID specific only to the given request. Corresponds to the JSON property requestId

Returns:

  • (Fixnum)


999
1000
1001
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 999

def request_id
  @request_id
end

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

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



1005
1006
1007
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1005

def results
  @results
end

#speech_adaptation_infoGoogle::Apis::SpeechV1p1beta1::SpeechAdaptationInfo

Information on speech adaptation use in results Corresponds to the JSON property speechAdaptationInfo



1010
1011
1012
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1010

def speech_adaptation_info
  @speech_adaptation_info
end

#total_billed_timeString

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

Returns:

  • (String)


1015
1016
1017
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1015

def total_billed_time
  @total_billed_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1022
1023
1024
1025
1026
1027
# File 'lib/google/apis/speech_v1p1beta1/classes.rb', line 1022

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