Class ChangeCustomLineItemPriceRoundingModeChangeBuilder

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

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

     ChangeCustomLineItemPriceRoundingModeChange changeCustomLineItemPriceRoundingModeChange = ChangeCustomLineItemPriceRoundingModeChange.builder()
             .change("{change}")
             .customLineItem(customLineItemBuilder -> customLineItemBuilder)
             .customLineItemId("{customLineItemId}")
             .previousValue(RoundingMode.HALF_EVEN)
             .nextValue(RoundingMode.HALF_EVEN)
             .build()