=100}. * * @var string[] */ public $integerBuckets; /** * Buckets for given integer values should be in strictly ascending order. For * example, if values supplied are (1,5,10,100), the following facet buckets * will be formed {<1, [1,5), [5-10), [10-100), >=100}. * * @param string[] $integerBuckets */ public function setIntegerBuckets($integerBuckets) { $this->integerBuckets = $integerBuckets; } /** * @return string[] */ public function getIntegerBuckets() { return $this->integerBuckets; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IntegerFacetingOptions::class, 'Google_Service_CloudSearch_IntegerFacetingOptions');