Change triggered by the following update actions:

- [Set Meta Keywords](ctp:api:type:CategorySetMetaKeywordsAction) on Categories.
- [Set Meta Keywords](ctp:api:type:ProductSetMetaKeywordsAction) on Products.
interface SetMetaKeywordsChange {
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    type: "SetMetaKeywordsChange";
}

Properties

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

type: "SetMetaKeywordsChange"