Adds an address from the addresses array to billingAddressIds. Either addressId or addressKey is required.

interface MyCustomerAddBillingAddressIdAction {
    action: "addBillingAddressId";
    addressId?: string;
    addressKey?: string;
}

Properties

action: "addBillingAddressId"
addressId?: string

id of the Address to become a billing address.

addressKey?: string

key of the Address to become a billing address.

Generated using TypeDoc