Change triggered by the Remove Item Shipping Address update action.

interface RemoveItemShippingAddressesChange {
    change: string;
    nextValue: Address;
    previousValue: Address;
    type: "RemoveItemShippingAddressesChange";
}

Properties

change: string
nextValue: Address

Value after the change.

previousValue: Address

Value before the change.

type: "RemoveItemShippingAddressesChange"