interface ProductSetCategoryOrderHintAction {
    action: "setCategoryOrderHint";
    categoryId: string;
    orderHint?: string;
    staged?: boolean;
}

Properties

action: "setCategoryOrderHint"
categoryId: string

The id of the Category to add the orderHint.

orderHint?: string

A string representing a number between 0 and 1. Must start with 0. and cannot end with 0. If empty, any existing value will be removed.

staged?: boolean

If true, only the staged categoryOrderHints is updated. If false, both the current and staged categoryOrderHints are updated.

Generated using TypeDoc