Interface SetVariantSelectionChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetVariantSelectionChangeImpl

public interface SetVariantSelectionChange extends Change

Change triggered by the Set Variant Selection update action.


Example to create an instance using the builder pattern

     SetVariantSelectionChange setVariantSelectionChange = SetVariantSelectionChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .product(productBuilder -> productBuilder)
             .build()