Change triggered by the following update actions:

- [Set External ID](ctp:api:type:CategorySetExternalIdAction) on Categories.
- [Set External ID](ctp:api:type:CustomerSetExternalIdAction) on Customers.
interface SetExternalIdChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetExternalIdChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetExternalIdChange"