Interface ChangeProductSelectionActiveChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeProductSelectionActiveChangeImpl

Change triggered by the Change Product Selection Active update action.


Example to create an instance using the builder pattern

     ChangeProductSelectionActiveChange changeProductSelectionActiveChange = ChangeProductSelectionActiveChange.builder()
             .change("{change}")
             .productSelection(productSelectionBuilder -> productSelectionBuilder)
             .previousValue(true)
             .nextValue(true)
             .build()