Interface BusinessUnitStoreModeChangedMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface BusinessUnitStoreModeChangedMessagePayload extends MessagePayload

Generated after a successful Set Store Mode update action.


Example to create an instance using the builder pattern

     BusinessUnitStoreModeChangedMessagePayload businessUnitStoreModeChangedMessagePayload = BusinessUnitStoreModeChangedMessagePayload.builder()
             .plusStores(storesBuilder -> storesBuilder)
             .storeMode(BusinessUnitStoreMode.EXPLICIT)
             .plusOldStores(oldStoresBuilder -> oldStoresBuilder)
             .oldStoreMode(BusinessUnitStoreMode.EXPLICIT)
             .build()