exactMatch = $exactMatch; } /** * @return string */ public function getExactMatch() { return $this->exactMatch; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setPresentMatch($presentMatch) { $this->presentMatch = $presentMatch; } /** * @return bool */ public function getPresentMatch() { return $this->presentMatch; } /** * @param string */ public function setRegexMatch($regexMatch) { $this->regexMatch = $regexMatch; } /** * @return string */ public function getRegexMatch() { return $this->regexMatch; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(HttpQueryParameterMatch::class, 'Google_Service_Compute_HttpQueryParameterMatch');