Change triggered by the following update actions:

- [Set Customer Email](ctp:api:type:OrderSetCustomerEmailAction) on Orders.
- [Set Customer Email](ctp:api:type:StagedOrderSetCustomerEmailAction) on Staged Orders.
interface SetCustomerEmailChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetCustomerEmailChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetCustomerEmailChange"