Change triggered by the following update actions:

- [Set Meta Title](ctp:api:type:CategorySetMetaTitleAction) on Categories.
- [Set Meta Title](ctp:api:type:ProductSetMetaTitleAction) on Products.
interface SetMetaTitleChange {
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    type: "SetMetaTitleChange";
}

Properties

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

type: "SetMetaTitleChange"