JSON object where the key is a Category id and the value is an order hint. Allows controlling the order of Products and how they appear in Categories. Products with no order hint have an order score below 0. Order hints are non-unique. If a subset of Products have the same value for order hint in a specific category, the behavior is undetermined.

interface CategoryOrderHints {
    [key: string]: string;
}

Indexable

[key: string]: string

Generated using TypeDoc