interface CategoryFacetValue {
    children: CategoryFacetValue[];
    isLeafValue: boolean;
    moreValuesAvailable: boolean;
    numberOfResults: number;
    path: string[];
    state: FacetValueState;
    value: string;
}

Hierarchy (View Summary)

Properties

children: CategoryFacetValue[]

The children of this facet value.

isLeafValue: boolean

When the hierarchical value has no children, this property is true.

moreValuesAvailable: boolean

Whether more facet values are available.

numberOfResults: number

The number of results that match the facet value.

path: string[]

The hierarchical path to the facet value.

Whether a facet value is filtering results (selected) or not (idle).

value: string

The facet value.