@gradientedge/commercetools-utils
    Preparing search index...

    Interface BusinessUnitChangeAddressAction

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

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

    Hierarchy (View Summary)

    Index

    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.