Change triggered by the following update actions:

- [Change Value](ctp:api:type:CartDiscountChangeValueAction) on Cart Discounts.
- [Change Value](ctp:api:type:ProductDiscountChangeValueAction) on Product Discounts.
interface ChangeValueChange {
    change: string;
    nextValue: ChangeValueChangeValue;
    previousValue: ChangeValueChangeValue;
    type: "ChangeValueChange";
}

Properties

change: string

Value after the change.

previousValue: ChangeValueChangeValue

Value before the change.

type: "ChangeValueChange"