Class ProductSelectionVariantSelectionChangedMessagePayloadBuilder

java.lang.Object
com.commercetools.api.models.message.ProductSelectionVariantSelectionChangedMessagePayloadBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<ProductSelectionVariantSelectionChangedMessagePayload>

ProductSelectionVariantSelectionChangedMessagePayloadBuilder
Example to create an instance using the builder pattern

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