Interface MyBusinessUnitAddBillingAddressIdAction

Adding a billing address to a Business Unit generates a BusinessUnitBillingAddressAdded Message.

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

Properties

action: "addBillingAddressId"
addressId?: string

ID of the address to add as a billing address. Either addressId or addressKey is required.

addressKey?: string

Key of the address to add as a billing address. Either addressId or addressKey is required.

Generated using TypeDoc