Class ExcludeProductChangeBuilder

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

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

     ExcludeProductChange excludeProductChange = ExcludeProductChange.builder()
             .change("{change}")
             .variantExclusion(variantExclusionBuilder -> variantExclusionBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()