Change triggered by the Remove Shipping Address ID update action.

interface RemoveShippingAddressIdChange {
    address: Address;
    change: string;
    nextValue: string[];
    previousValue: string[];
    type: "RemoveShippingAddressIdChange";
}

Properties

address: Address

Address removed from shippingAddressesIds.

change: string
nextValue: string[]

Value after the change.

previousValue: string[]

Value before the change.

type: "RemoveShippingAddressIdChange"