Interface MyBusinessUnitRemoveBillingAddressIdAction

Removing a billing address from a Business Unit generates a BusinessUnitBillingAddressRemoved Message.

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

Properties

action: "removeBillingAddressId"
addressId?: string

ID of the billing address to be removed. Either addressId or addressKey is required.

addressKey?: string

Key of the billing address to be removed. Either addressId or addressKey is required.

Generated using TypeDoc