To make all included Products available to your customers of a given Store, add the Product Selections to the respective Store. This action has no effect if the given Product Selection is already present in the Store and has the same active flag.

interface StoreAddProductSelectionAction {
    action: "addProductSelection";
    active?: boolean;
    productSelection: ProductSelectionResourceIdentifier;
}

Properties

action: "addProductSelection"
active?: boolean

Set to true to make all Products assigned to the referenced Product Selection available in the Store.

Product Selection to add to the Store either activated or deactivated.

Generated using TypeDoc