interface SetLineItemTaxedPriceChange {
    change: string;
    lineItem: LocalizedString;
    lineItemId: string;
    nextValue: TaxedItemPrice;
    previousValue: TaxedItemPrice;
    type: "SetLineItemTaxedPriceChange";
}

Properties

change: string
lineItem: LocalizedString

Name of the Product the Line Item is based on.

lineItemId: string

id of the updated LineItem.

nextValue: TaxedItemPrice

Value after the change.

previousValue: TaxedItemPrice

Value before the change.

type: "SetLineItemTaxedPriceChange"