1. @sitecore-cloudsdk/search/browser

RangeFacetFilterEventParams

Version:

Type

Interface

Extends

SuggestionFilterEventParams

Import path

@sitecore-cloudsdk/search/browser

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

Name

Type

Description

Value

startValue

string

Required.

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"

endValue

string

Required.

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!