Interface RequestQuoteRenegotiationChange

All Superinterfaces:
Change
All Known Implementing Classes:
RequestQuoteRenegotiationChangeImpl

public interface RequestQuoteRenegotiationChange extends Change

Change triggered by the Request Quote Renegotiation update action.


Example to create an instance using the builder pattern

     RequestQuoteRenegotiationChange requestQuoteRenegotiationChange = RequestQuoteRenegotiationChange.builder()
             .change("{change}")
             .previousValue(QuoteState.PENDING)
             .nextValue(QuoteState.PENDING)
             .buyerComment("{buyerComment}")
             .build()