Interface ProductSelectionVariantSelectionChangedMessagePayload

All Superinterfaces:
MessagePayload
All Known Implementing Classes:
ProductSelectionVariantSelectionChangedMessagePayloadImpl

Generated after a successful Set Variant Selection update action.


Example to create an instance using the builder pattern

     ProductSelectionVariantSelectionChangedMessagePayload productSelectionVariantSelectionChangedMessagePayload = ProductSelectionVariantSelectionChangedMessagePayload.builder()
             .product(productBuilder -> productBuilder)
             .oldVariantSelection(oldVariantSelectionBuilder -> oldVariantSelectionBuilder)
             .newVariantSelection(newVariantSelectionBuilder -> newVariantSelectionBuilder)
             .build()