ProductSelection in a Store can be activated or deactivated using this update action.

interface StoreChangeProductSelectionAction {
    action: "changeProductSelectionActive";
    active?: boolean;
    productSelection: ProductSelectionResourceIdentifier;
}

Properties

action: "changeProductSelectionActive"
active?: boolean

Set to true if all Products assigned to the Product Selection should become part of the Store's assortment.

Current Product Selection of the Store to be activated or deactivated.