Change triggered by the Add Billing Address ID update action.

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

Properties

address: Address

Address added to billingAddressIds.

change: string
nextValue: string[]

Value after the change.

previousValue: string[]

Value before the change.

type: "AddBillingAddressIdChange"