Interface SetDistributionChannelsChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetDistributionChannelsChangeImpl

public interface SetDistributionChannelsChange extends Change

Change triggered by the Set Distribution Channels update action.


Example to create an instance using the builder pattern

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