Class SetStoreChangeBuilder

java.lang.Object
com.commercetools.history.models.change.SetStoreChangeBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<SetStoreChange>

public class SetStoreChangeBuilder extends Object implements io.vrap.rmf.base.client.Builder<SetStoreChange>
SetStoreChangeBuilder
Example to create an instance using the builder pattern

     SetStoreChange setStoreChange = SetStoreChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()