loadErrors = $loadErrors; } /** * @return string[] */ public function getLoadErrors() { return $this->loadErrors; } /** * @param bool */ public function setLoadSucceeded($loadSucceeded) { $this->loadSucceeded = $loadSucceeded; } /** * @return bool */ public function getLoadSucceeded() { return $this->loadSucceeded; } /** * @param TestFailure[] */ public function setTestFailures($testFailures) { $this->testFailures = $testFailures; } /** * @return TestFailure[] */ public function getTestFailures() { return $this->testFailures; } /** * @param bool */ public function setTestPassed($testPassed) { $this->testPassed = $testPassed; } /** * @return bool */ public function getTestPassed() { return $this->testPassed; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UrlMapValidationResult::class, 'Google_Service_Compute_UrlMapValidationResult');