Change triggered by the following update actions:

- [Set Valid Until](ctp:api:type:CartDiscountSetValidUntilAction) on Cart Discounts.
- [Set Valid Until](ctp:api:type:DiscountCodeSetValidUntilAction) on Discount Codes.
- [Set Valid Until](ctp:api:type:ProductDiscountSetValidUntilAction) on Product Discounts.
interface SetValidUntilChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetValidUntilChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetValidUntilChange"