arguments = $arguments; } /** * @return string[] */ public function getArguments() { return $this->arguments; } /** * @param string */ public function setCode($code) { $this->code = $code; } /** * @return string */ public function getCode() { return $this->code; } /** * @param DebugInfo */ public function setDebugInfo(DebugInfo $debugInfo) { $this->debugInfo = $debugInfo; } /** * @return DebugInfo */ public function getDebugInfo() { return $this->debugInfo; } /** * @param OperationErrorErrorsErrorDetails[] */ public function setErrorDetails($errorDetails) { $this->errorDetails = $errorDetails; } /** * @return OperationErrorErrorsErrorDetails[] */ public function getErrorDetails() { return $this->errorDetails; } /** * @param string */ public function setLocation($location) { $this->location = $location; } /** * @return string */ public function getLocation() { return $this->location; } /** * @param string */ public function setMessage($message) { $this->message = $message; } /** * @return string */ public function getMessage() { return $this->message; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OperationErrorErrors::class, 'Google_Service_DeploymentManager_OperationErrorErrors');