Change triggered by the following update actions:

- [Set Description](ctp:api:type:TaxCategorySetDescriptionAction) on Tax Categories.
- [Set Description](ctp:api:type:ZoneSetDescriptionAction) on Zones.
interface SetDescriptionChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetDescriptionChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetDescriptionChange"