Class ShoppingListLineItemValueBuilder

java.lang.Object
com.commercetools.history.models.change_value.ShoppingListLineItemValueBuilder
All Implemented Interfaces:
Builder<ShoppingListLineItemValue>

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

     ShoppingListLineItemValue shoppingListLineItemValue = ShoppingListLineItemValue.builder()
             .id("{id}")
             .name(nameBuilder -> nameBuilder)
             .variantId(1)
             .build()