Class AddPaymentChangeBuilder

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

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

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