commandLineArguments = $commandLineArguments; } /** * @return string[] */ public function getCommandLineArguments() { return $this->commandLineArguments; } /** * @param ToolExitCode */ public function setExitCode(ToolExitCode $exitCode) { $this->exitCode = $exitCode; } /** * @return ToolExitCode */ public function getExitCode() { return $this->exitCode; } /** * @param FileReference[] */ public function setToolLogs($toolLogs) { $this->toolLogs = $toolLogs; } /** * @return FileReference[] */ public function getToolLogs() { return $this->toolLogs; } /** * @param ToolOutputReference[] */ public function setToolOutputs($toolOutputs) { $this->toolOutputs = $toolOutputs; } /** * @return ToolOutputReference[] */ public function getToolOutputs() { return $this->toolOutputs; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ToolExecution::class, 'Google_Service_ToolResults_ToolExecution');