Interface ProductCreatedMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface ProductCreatedMessagePayload extends MessagePayload

Generated after a successful Create Product request.


Example to create an instance using the builder pattern

     ProductCreatedMessagePayload productCreatedMessagePayload = ProductCreatedMessagePayload.builder()
             .productProjection(productProjectionBuilder -> productProjectionBuilder)
             .build()