1. Interfaces

RangeFacetFilterEventParams

Version: 0.6
TypeInterface
ExtendsSuggestionFilterEventParams
Import path@sitecore-cloudsdk/search/server

Data for range facets. Part of the WidgetFacetClickEventParams data used when capturing facet click events.

Signature

export interface RangeFacetFilterEventParams extends SuggestionFilterEventParams {
  startValue: string;
  endValue: string;
}

Properties

NameTypeDescriptionValue
startValuestringRequired.

In a range filter, the minimum value the site visitor sets for the range.

For example, if the site visitor sets the price range to minimum $11 and maximum $43, set this value to "11".
"11"
endValuestringRequired.

In a range filter, the maximum value the site visitor sets for the range.

For example, if the site visitor sets the price range to minimum $11 and maximum $43, set this value to "43".
"43"
If you have suggestions for improving this article, let us know!