Interface SetSupplyChannelsChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetSupplyChannelsChangeImpl

public interface SetSupplyChannelsChange extends Change

Change triggered by the Set Supply Channels update action.


Example to create an instance using the builder pattern

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