Class SetSupplyChannelChangeBuilder

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

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

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