Class StagedOrderAddShoppingListActionBuilder

java.lang.Object
com.commercetools.api.models.order_edit.StagedOrderAddShoppingListActionBuilder
All Implemented Interfaces:
Builder<StagedOrderAddShoppingListAction>

public class StagedOrderAddShoppingListActionBuilder extends Object implements Builder<StagedOrderAddShoppingListAction>
StagedOrderAddShoppingListActionBuilder
Example to create an instance using the builder pattern

     StagedOrderAddShoppingListAction stagedOrderAddShoppingListAction = StagedOrderAddShoppingListAction.builder()
             .shoppingList(shoppingListBuilder -> shoppingListBuilder)
             .build()