interface NumericFacetValue {
    end: number;
    endInclusive: boolean;
    numberOfResults: number;
    start: number;
    state: FacetValueState;
}

Properties

end: number

The ending value for the numeric range.

endInclusive: boolean

Whether or not the end value is included in the range.

numberOfResults: number

The number of results that have the facet value.

start: number

The starting value for the numeric range.

The state of the facet value, indicating whether it is filtering results (selected) or not (idle).