Change triggered by the Change Price update action.

interface ChangePriceChange {
    catalogData: string;
    change: string;
    nextValue: Price;
    previousValue: Price;
    priceId: string;
    type: "ChangePriceChange";
}

Properties

catalogData: string
change: string
nextValue: Price

Value after the change.

previousValue: Price

Value before the change.

priceId: string

id of the Embedded Price.

type: "ChangePriceChange"