Change triggered by the following update actions:

- [Set Locale](ctp:api:type:CustomerSetLocaleAction) on Customers.
- [Set Locale](ctp:api:type:OrderSetLocaleAction) on Orders.
- [Set Locale](ctp:api:type:StagedOrderSetLocaleAction) on Staged Orders.
- [Set Locale](ctp:api:type:ReviewSetLocaleAction) on Reviews.
interface SetLocaleChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetLocaleChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetLocaleChange"