attribute = $attribute; } /** * @return string */ public function getAttribute() { return $this->attribute; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param bool */ public function setPathPatternSupported($pathPatternSupported) { $this->pathPatternSupported = $pathPatternSupported; } /** * @return bool */ public function getPathPatternSupported() { return $this->pathPatternSupported; } /** * @param bool */ public function setRequired($required) { $this->required = $required; } /** * @return bool */ public function getRequired() { return $this->required; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FilteringAttribute::class, 'Google_Service_Eventarc_FilteringAttribute');