Interface StoreProductSelectionsChangedMessagePayload

interface StoreProductSelectionsChangedMessagePayload {
    addedProductSelections?: ProductSelectionSetting[];
    removedProductSelections?: ProductSelectionSetting[];
    type: "StoreProductSelectionsChanged";
    updatedProductSelections?: ProductSelectionSetting[];
}

Properties

addedProductSelections?: ProductSelectionSetting[]

ProductSelectionSettings that were added to the Store.

removedProductSelections?: ProductSelectionSetting[]

ProductSelectionSettings that were removed from the Store.

type: "StoreProductSelectionsChanged"
updatedProductSelections?: ProductSelectionSetting[]

ProductSelectionSettings that were updated in the Store.

Generated using TypeDoc