Change triggered by the following update actions:

- [Set Billing Address](ctp:api:type:OrderSetBillingAddressAction) on Orders.
- [Set Billing Address](ctp:api:type:StagedOrderSetBillingAddressAction) on Staged Orders.
interface SetBillingAddressChange {
    change: string;
    nextValue: Address;
    previousValue: Address;
    type: "SetBillingAddressChange";
}

Properties

change: string
nextValue: Address

Value after the change.

previousValue: Address

Value before the change.

type: "SetBillingAddressChange"