interface Parameters {
    cf?: Record<string, string[]>;
    df?: Record<string, DateRangeRequest[]>;
    f?: Record<string, string[]>;
    mnf?: Record<string, NumericRangeRequest[]>;
    nf?: Record<string, NumericRangeRequest[]>;
    page?: number;
    perPage?: number;
    sortCriteria?: SortCriterion;
}

Properties

cf?: Record<string, string[]>

A record of the category facets, where the key is the facet id, and value is an array containing the parts of the selected path.

df?: Record<string, DateRangeRequest[]>

A record of the date facets, where the key is the facet id, and value is an array containing the date ranges to request.

f?: Record<string, string[]>

A record of the facets, where the key is the facet id, and value is an array containing the selected values.

mnf?: Record<string, NumericRangeRequest[]>

A record of manual numeric facets, where the key is the facet id, and the value is an array containing the numeric ranges to request.

nf?: Record<string, NumericRangeRequest[]>

A record of the numeric facets, where the key is the facet id, and value is an array containing the numeric ranges to request.

page?: number

The zero-based index of the active page.

perPage?: number

The number of results per page.

sortCriteria?: SortCriterion

The sort expression to order returned results by.