Change triggered by the Set LineItem Price update action.

interface SetLineItemPriceChange {
    change: string;
    lineItem: LocalizedString;
    nextValue: Price;
    previousValue: Price;
    type: "SetLineItemPriceChange";
}

Properties

change: string
lineItem: LocalizedString

Name of the Product the updated Line Item is based on.

nextValue: Price

Value after the change.

previousValue: Price

Value before the change.

type: "SetLineItemPriceChange"