Interface ChangeStagedQuoteStateChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeStagedQuoteStateChangeImpl

public interface ChangeStagedQuoteStateChange extends Change

Change triggered by the ChangeStagedQuoteState update action.


Example to create an instance using the builder pattern

     ChangeStagedQuoteStateChange changeStagedQuoteStateChange = ChangeStagedQuoteStateChange.builder()
             .change("{change}")
             .previousValue(StagedQuoteState.IN_PROGRESS)
             .nextValue(StagedQuoteState.IN_PROGRESS)
             .build()