Change triggered by the following update actions:

- [Change Name](ctp:api:type:CustomerGroupChangeNameAction) on Customer Groups.
- [Change Name](ctp:api:type:ProductTypeChangeNameAction) on Product Types.
- [Change Name](ctp:api:type:TaxCategoryChangeNameAction) on Tax Categories.
- [Change Name](ctp:api:type:ZoneChangeNameAction) on Zones.
interface ChangeNameChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "ChangeNameChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "ChangeNameChange"