Change triggered by the following update actions:

- [Change Slug](ctp:api:type:CategoryChangeSlugAction) on Categories.
- [Change Slug](ctp:api:type:ProductChangeSlugAction) on Products.
interface ChangeSlugChange {
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    type: "ChangeSlugChange";
}

Properties

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

type: "ChangeSlugChange"