Interface BusinessUnitSetDefaultBillingAddressAction

Setting the default billing address on a Business Unit generates the BusinessUnitDefaultBillingAddressSet Message.

interface BusinessUnitSetDefaultBillingAddressAction {
    action: "setDefaultBillingAddress";
    addressId?: string;
    addressKey?: string;
}

Properties

action: "setDefaultBillingAddress"
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