Class AddVariantChangeBuilder

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

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

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