integerFacetingOptions = $integerFacetingOptions; } /** * @return IntegerFacetingOptions */ public function getIntegerFacetingOptions() { return $this->integerFacetingOptions; } /** * The maximum value of the property. The minimum and maximum values for the * property are used to rank results according to the ordered ranking. * Indexing requests with values greater than the maximum are accepted and * ranked with the same weight as items indexed with the maximum value. * * @param string $maximumValue */ public function setMaximumValue($maximumValue) { $this->maximumValue = $maximumValue; } /** * @return string */ public function getMaximumValue() { return $this->maximumValue; } /** * The minimum value of the property. The minimum and maximum values for the * property are used to rank results according to the ordered ranking. * Indexing requests with values less than the minimum are accepted and ranked * with the same weight as items indexed with the minimum value. * * @param string $minimumValue */ public function setMinimumValue($minimumValue) { $this->minimumValue = $minimumValue; } /** * @return string */ public function getMinimumValue() { return $this->minimumValue; } /** * If set, describes how the integer should be used as a search operator. * * @param IntegerOperatorOptions $operatorOptions */ public function setOperatorOptions(IntegerOperatorOptions $operatorOptions) { $this->operatorOptions = $operatorOptions; } /** * @return IntegerOperatorOptions */ public function getOperatorOptions() { return $this->operatorOptions; } /** * Used to specify the ordered ranking for the integer. Can only be used if * isRepeatable is false. * * Accepted values: NO_ORDER, ASCENDING, DESCENDING * * @param self::ORDERED_RANKING_* $orderedRanking */ public function setOrderedRanking($orderedRanking) { $this->orderedRanking = $orderedRanking; } /** * @return self::ORDERED_RANKING_* */ public function getOrderedRanking() { return $this->orderedRanking; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IntegerPropertyOptions::class, 'Google_Service_CloudSearch_IntegerPropertyOptions');