Interface SetSupplyChannelChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetSupplyChannelChangeImpl

public interface SetSupplyChannelChange extends Change

Change triggered by the Set SupplyChannel update action.


Example to create an instance using the builder pattern

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