Change triggered by the following update actions:

- [Set Meta Description](ctp:api:type:CategorySetMetaDescriptionAction) on Categories.
- [Set Meta Description](ctp:api:type:ProductSetMetaDescriptionAction) on Products.
interface SetMetaDescriptionChange {
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    type: "SetMetaDescriptionChange";
}

Properties

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

type: "SetMetaDescriptionChange"