Class: Google::Apis::SpeechV1::LongRunningRecognizeResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpeechV1::LongRunningRecognizeResponse
- 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 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
-
#output_config ⇒ Google::Apis::SpeechV1::TranscriptOutputConfig
Specifies an optional destination for the recognition results.
-
#output_error ⇒ Google::Apis::SpeechV1::Status
The
Statustype defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. -
#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.
-
#speech_adaptation_info ⇒ Google::Apis::SpeechV1::SpeechAdaptationInfo
Information on speech adaptation use in results Corresponds to the JSON property
speechAdaptationInfo. -
#total_billed_time ⇒ String
When available, billed audio seconds for the corresponding request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LongRunningRecognizeResponse
constructor
A new instance of LongRunningRecognizeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LongRunningRecognizeResponse
Returns a new instance of LongRunningRecognizeResponse.
390 391 392 |
# File 'lib/google/apis/speech_v1/classes.rb', line 390 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_config ⇒ Google::Apis::SpeechV1::TranscriptOutputConfig
Specifies an optional destination for the recognition results.
Corresponds to the JSON property outputConfig
356 357 358 |
# File 'lib/google/apis/speech_v1/classes.rb', line 356 def output_config @output_config end |
#output_error ⇒ Google::Apis::SpeechV1::Status
The Status type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property outputError
366 367 368 |
# File 'lib/google/apis/speech_v1/classes.rb', line 366 def output_error @output_error end |
#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
372 373 374 |
# File 'lib/google/apis/speech_v1/classes.rb', line 372 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
378 379 380 |
# File 'lib/google/apis/speech_v1/classes.rb', line 378 def results @results end |
#speech_adaptation_info ⇒ Google::Apis::SpeechV1::SpeechAdaptationInfo
Information on speech adaptation use in results
Corresponds to the JSON property speechAdaptationInfo
383 384 385 |
# File 'lib/google/apis/speech_v1/classes.rb', line 383 def speech_adaptation_info @speech_adaptation_info end |
#total_billed_time ⇒ String
When available, billed audio seconds for the corresponding request.
Corresponds to the JSON property totalBilledTime
388 389 390 |
# File 'lib/google/apis/speech_v1/classes.rb', line 388 def total_billed_time @total_billed_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
395 396 397 398 399 400 401 402 |
# File 'lib/google/apis/speech_v1/classes.rb', line 395 def update!(**args) @output_config = args[:output_config] if args.key?(:output_config) @output_error = args[:output_error] if args.key?(:output_error) @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 |