outcome = $outcome; } /** * @return self::OUTCOME_* */ public function getOutcome() { return $this->outcome; } /** * Optional. Contains stdout when code execution is successful, stderr or * other description otherwise. * * @param string $output */ public function setOutput($output) { $this->output = $output; } /** * @return string */ public function getOutput() { return $this->output; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDiscoveryengineV1AssistantContentCodeExecutionResult::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1AssistantContentCodeExecutionResult');