Interface SetStoreModeChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetStoreModeChangeImpl

public interface SetStoreModeChange extends Change

Change triggered by the Set Store Mode update action.


Example to create an instance using the builder pattern

     SetStoreModeChange setStoreModeChange = SetStoreModeChange.builder()
             .change("{change}")
             .previousValue(BusinessUnitStoreMode.EXPLICIT)
             .nextValue(BusinessUnitStoreMode.EXPLICIT)
             .build()