Class ShoppingListChangeLineItemQuantityActionBuilder

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

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

     ShoppingListChangeLineItemQuantityAction shoppingListChangeLineItemQuantityAction = ShoppingListChangeLineItemQuantityAction.builder()
             .quantity(0.3)
             .build()