Interface CartAddShoppingListAction

All Superinterfaces:
CartUpdateAction, ResourceUpdateAction<CartUpdateAction>
All Known Implementing Classes:
CartAddShoppingListActionImpl

Adds all LineItems of a ShoppingList to the Cart.


Example to create an instance using the builder pattern

     CartAddShoppingListAction cartAddShoppingListAction = CartAddShoppingListAction.builder()
             .shoppingList(shoppingListBuilder -> shoppingListBuilder)
             .build()