category = $category; } /** * @return string */ public function getCategory() { return $this->category; } /** * @param string */ public function setCode($code) { $this->code = $code; } /** * @return string */ public function getCode() { return $this->code; } /** * @param Color */ public function setColor(Color $color) { $this->color = $color; } /** * @return Color */ public function getColor() { return $this->color; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setIndexDescription($indexDescription) { $this->indexDescription = $indexDescription; } /** * @return string */ public function getIndexDescription() { return $this->indexDescription; } /** * @param int */ public function setValue($value) { $this->value = $value; } /** * @return int */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IndexInfo::class, 'Google_Service_Pollen_IndexInfo');