Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IntegerPropertyOptions

import type { IntegerPropertyOptions } from "https://googleapis.deno.dev/v1/cloudsearch:v1.ts";

The options for integer properties.

interface IntegerPropertyOptions {
integerFacetingOptions?: IntegerFacetingOptions;
maximumValue?: bigint;
minimumValue?: bigint;
operatorOptions?: IntegerOperatorOptions;
orderedRanking?: "NO_ORDER" | "ASCENDING" | "DESCENDING";
}

§Properties

§
integerFacetingOptions?: IntegerFacetingOptions
[src]

If set, describes integer faceting options for the given integer property. The corresponding integer property should be marked isFacetable.

§
maximumValue?: bigint
[src]

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.

§
minimumValue?: bigint
[src]

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.

§
operatorOptions?: IntegerOperatorOptions
[src]

If set, describes how the integer should be used as a search operator.

§
orderedRanking?: "NO_ORDER" | "ASCENDING" | "DESCENDING"
[src]

Used to specify the ordered ranking for the integer. Can only be used if isRepeatable is false.