Class SetProductAttributeChangeBuilder

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

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

     SetProductAttributeChange setProductAttributeChange = SetProductAttributeChange.builder()
             .change("{change}")
             .catalogData("{catalogData}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()