Interface CustomerRemoveStoreAction

All Superinterfaces:
CustomerUpdateAction, ResourceUpdateAction<CustomerUpdateAction>

public interface CustomerRemoveStoreAction extends CustomerUpdateAction

Removes the association to a Store from the Customer. If no more Stores are assigned, the Customer becomes a global Customer.


Example to create an instance using the builder pattern

     CustomerRemoveStoreAction customerRemoveStoreAction = CustomerRemoveStoreAction.builder()
             .store(storeBuilder -> storeBuilder)
             .build()