Class SetStoresChangeBuilder

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

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

     SetStoresChange setStoresChange = SetStoresChange.builder()
             .change("{change}")
             .plusPreviousValue(previousValueBuilder -> previousValueBuilder)
             .plusNextValue(nextValueBuilder -> nextValueBuilder)
             .build()