Change triggered by the following update actions:

- [Set AnonymousId](ctp:api:type:PaymentSetAnonymousIdAction) on Payments.
- [Set AnonymousId](ctp:api:type:ShoppingListSetAnonymousIdAction) on Shopping Lists.
interface SetAnonymousIdChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetAnonymousIdChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetAnonymousIdChange"