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

    Interface CustomerRemoveAddressAction

    Removing an address from the Customer produces the CustomerAddressRemoved Message.

    Either `addressId` or `addressKey` is required.
    
    interface CustomerRemoveAddressAction {
        action: "removeAddress";
        addressId?: string;
        addressKey?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action: "removeAddress"
    addressId?: string

    id of the Address to remove.

    addressKey?: string

    key of the Address to remove.