Class: Google::Apis::SpeechV1::RecognizeResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1::RecognizeResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/speech_v1/classes.rb,
lib/google/apis/speech_v1/representations.rb,
lib/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
-
#request_id ⇒ Fixnum
The ID associated with the request.
-
#results ⇒ Array<Google::Apis::SpeechV1::SpeechRecognitionResult>
Sequential list of transcription results corresponding to sequential portions of audio.
-
#total_billed_time ⇒ String
When available, billed audio seconds for the corresponding request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RecognizeResponse
constructor
A new instance of RecognizeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RecognizeResponse
Returns a new instance of RecognizeResponse.
878 879 880 |
# File 'lib/google/apis/speech_v1/classes.rb', line 878 def initialize(**args) update!(**args) end |
Instance Attribute Details
#request_id ⇒ Fixnum
The ID associated with the request. This is a unique ID specific only to the
given request.
Corresponds to the JSON property requestId
865 866 867 |
# File 'lib/google/apis/speech_v1/classes.rb', line 865 def request_id @request_id end |
#results ⇒ Array<Google::Apis::SpeechV1::SpeechRecognitionResult>
Sequential list of transcription results corresponding to sequential portions
of audio.
Corresponds to the JSON property results
871 872 873 |
# File 'lib/google/apis/speech_v1/classes.rb', line 871 def results @results end |
#total_billed_time ⇒ String
When available, billed audio seconds for the corresponding request.
Corresponds to the JSON property totalBilledTime
876 877 878 |
# File 'lib/google/apis/speech_v1/classes.rb', line 876 def total_billed_time @total_billed_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
883 884 885 886 887 |
# File 'lib/google/apis/speech_v1/classes.rb', line 883 def update!(**args) @request_id = args[:request_id] if args.key?(:request_id) @results = args[:results] if args.key?(:results) @total_billed_time = args[:total_billed_time] if args.key?(:total_billed_time) end |