Interface ProductPriceAddedMessagePayload

All Superinterfaces:
MessagePayload
All Known Implementing Classes:
ProductPriceAddedMessagePayloadImpl

Generated after a successful Add Price update action.


Example to create an instance using the builder pattern

     ProductPriceAddedMessagePayload productPriceAddedMessagePayload = ProductPriceAddedMessagePayload.builder()
             .variantId(0.3)
             .price(priceBuilder -> priceBuilder)
             .staged(true)
             .build()