Interface ChangeQuoteStateChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeQuoteStateChangeImpl

public interface ChangeQuoteStateChange extends Change

Change triggered by the Change Quote State update action.


Example to create an instance using the builder pattern

     ChangeQuoteStateChange changeQuoteStateChange = ChangeQuoteStateChange.builder()
             .change("{change}")
             .previousValue(QuoteState.PENDING)
             .nextValue(QuoteState.PENDING)
             .build()