outputConfig = $outputConfig; } /** * @return TranscriptOutputConfig */ public function getOutputConfig() { return $this->outputConfig; } /** * @param Status */ public function setOutputError(Status $outputError) { $this->outputError = $outputError; } /** * @return Status */ public function getOutputError() { return $this->outputError; } /** * @param SpeechRecognitionResult[] */ public function setResults($results) { $this->results = $results; } /** * @return SpeechRecognitionResult[] */ public function getResults() { return $this->results; } /** * @param string */ public function setTotalBilledTime($totalBilledTime) { $this->totalBilledTime = $totalBilledTime; } /** * @return string */ public function getTotalBilledTime() { return $this->totalBilledTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LongRunningRecognizeResponse::class, 'Google_Service_Speech_LongRunningRecognizeResponse');