Interface QuoteStateChangedMessagePayload

All Superinterfaces:
MessagePayload
All Known Implementing Classes:
QuoteStateChangedMessagePayloadImpl

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()