category = $category; } /** * @return string */ public function getCategory() { return $this->category; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setDetails($details) { $this->details = $details; } /** * @return string */ public function getDetails() { return $this->details; } /** * @param string */ public function setReason($reason) { $this->reason = $reason; } /** * @return string */ public function getReason() { return $this->reason; } /** * @param string */ public function setState($state) { $this->state = $state; } /** * @return string */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ValidationCheckResult::class, 'Google_Service_GKEOnPrem_ValidationCheckResult');