category = $category; } /** * @return string */ public function getCategory() { return $this->category; } /** * @param bool */ public function setDisabled($disabled) { $this->disabled = $disabled; } /** * @return bool */ public function getDisabled() { return $this->disabled; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setTypeDescriptor($typeDescriptor) { $this->typeDescriptor = $typeDescriptor; } /** * @return string */ public function getTypeDescriptor() { return $this->typeDescriptor; } /** * @param BuildVersion */ public function setVersion(BuildVersion $version) { $this->version = $version; } /** * @return BuildVersion */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Extension::class, 'Google_Service_TrafficDirectorService_Extension');