class Google::Apis::SpeechV1p1beta1::LongRunningRecognizeResponse
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.
Attributes
Specifies an optional destination for the recognition results. Corresponds to the JSON property `outputConfig` @return [Google::Apis::SpeechV1p1beta1::TranscriptOutputConfig]
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](github.com/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](https: //cloud.google.com/apis/design/errors). Corresponds to the JSON property `outputError` @return [Google::Apis::SpeechV1p1beta1::Status]
Sequential list of transcription results corresponding to sequential portions of audio. Corresponds to the JSON property `results` @return [Array<Google::Apis::SpeechV1p1beta1::SpeechRecognitionResult>]
When available, billed audio seconds for the corresponding request. Corresponds to the JSON property `totalBilledTime` @return [String]
Public Class Methods
# File lib/google/apis/speech_v1p1beta1/classes.rb, line 377 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/speech_v1p1beta1/classes.rb, line 382 def update!(**args) @output_config = args[:output_config] if args.key?(:output_config) @output_error = args[:output_error] if args.key?(:output_error) @results = args[:results] if args.key?(:results) @total_billed_time = args[:total_billed_time] if args.key?(:total_billed_time) end