Class ShoppingListDraftBuilder

java.lang.Object
com.commercetools.api.models.shopping_list.ShoppingListDraftBuilder
All Implemented Interfaces:
Builder<ShoppingListDraft>

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

     ShoppingListDraft shoppingListDraft = ShoppingListDraft.builder()
             .name(nameBuilder -> nameBuilder)
             .build()