Change triggered by the following update actions:

- [Set Valid From](ctp:api:type:CartDiscountSetValidFromAction) on Cart Discounts.
- [Set Valid From](ctp:api:type:DiscountCodeSetValidFromAction) on Discount Codes.
- [Set Valid From](ctp:api:type:ProductDiscountSetValidFromAction) on Product Discounts.
interface SetValidFromChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetValidFromChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetValidFromChange"