Changing the address on a Business Unit generates the BusinessUnitAddressChanged Message.

interface BusinessUnitChangeAddressAction {
    action: "changeAddress";
    address: _BaseAddress;
    addressId?: string;
    addressKey?: string;
}

Properties

action: "changeAddress"
address: _BaseAddress

New address to set.

addressId?: string

ID of the address to change. Either addressId or addressKey is required.

addressKey?: string

Key of the address to change. Either addressId or addressKey is required.

Generated using TypeDoc