Change triggered by the following update actions:

- [Set Store](ctp:api:type:OrderSetStoreAction) on Orders.
- [Set Store](ctp:api:type:ShoppingListSetStoreAction) on Shopping Lists.
interface SetStoreChange {
    change: string;
    nextValue: Reference;
    previousValue: Reference;
    type: "SetStoreChange";
}

Properties

change: string
nextValue: Reference

Value after the change.

previousValue: Reference

Value before the change.

type: "SetStoreChange"