Interface MyCustomerRemoveBillingAddressIdAction

Removes an existing billing address from billingAddressesIds. If the billing address is the default billing address, the defaultBillingAddressId is unset. Either addressId or addressKey is required.

interface MyCustomerRemoveBillingAddressIdAction {
    action: "removeBillingAddressId";
    addressId?: string;
    addressKey?: string;
}

Properties

action: "removeBillingAddressId"
addressId?: string

id of the Address to remove from billingAddressesIds.

addressKey?: string

key of the Address to remove from billingAddressesIds.

Generated using TypeDoc