Class SetShoppingListLineItemCustomTypeChangeBuilder

java.lang.Object
com.commercetools.history.models.change.SetShoppingListLineItemCustomTypeChangeBuilder
All Implemented Interfaces:
Builder<SetShoppingListLineItemCustomTypeChange>

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

     SetShoppingListLineItemCustomTypeChange setShoppingListLineItemCustomTypeChange = SetShoppingListLineItemCustomTypeChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .lineItem(lineItemBuilder -> lineItemBuilder)
             .build()