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

    Interface CustomerChangeAddressAction

    Changing an address of the Customer produces the CustomerAddressChanged Message.

    Either `addressId` or `addressKey` is required.
    
    interface CustomerChangeAddressAction {
        action: "changeAddress";
        address: _BaseAddress;
        addressId?: string;
        addressKey?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action: "changeAddress"
    address: _BaseAddress

    Value to set.

    addressId?: string

    id of the Address to change.

    addressKey?: string

    key of the Address to change.