Class ChangeAssociateChangeBuilder

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

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

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