Change triggered by the following update actions:

- [Set Title](ctp:api:type:CustomerSetTitleAction) on Customers.
- [Set Title](ctp:api:type:ReviewSetTitleAction) on Reviews.
interface SetTitleChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetTitleChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetTitleChange"