Produces the ProductRemovedFromCategory Message.

interface ProductRemoveFromCategoryAction {
    action: "removeFromCategory";
    category: CategoryResourceIdentifier;
    staged?: boolean;
}

Properties

action: "removeFromCategory"

The Category to remove.

staged?: boolean

If true, only the staged categories and categoryOrderHints are removed. If false, both the current and staged categories and categoryOrderHints are removed.

Generated using TypeDoc