Class ReplaceTaxRateChangeBuilder

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

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

     ReplaceTaxRateChange replaceTaxRateChange = ReplaceTaxRateChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()