count = $count; } /** * @return int */ public function getCount() { return $this->count; } /** * @param Filter */ public function setFilter(Filter $filter) { $this->filter = $filter; } /** * @return Filter */ public function getFilter() { return $this->filter; } /** * @param int */ public function setPercentage($percentage) { $this->percentage = $percentage; } /** * @return int */ public function getPercentage() { return $this->percentage; } /** * @param Value */ public function setValue(Value $value) { $this->value = $value; } /** * @return Value */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FacetBucket::class, 'Google_Service_CloudSearch_FacetBucket');