Interface QuoteStateChangedMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface QuoteStateChangedMessagePayload extends MessagePayload

Generated after a successful Change Quote State update action.


Example to create an instance using the builder pattern

     QuoteStateChangedMessagePayload quoteStateChangedMessagePayload = QuoteStateChangedMessagePayload.builder()
             .quoteState(QuoteState.PENDING)
             .oldQuoteState(QuoteState.PENDING)
             .build()