Class SetAttributeChangeBuilder

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

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

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