Interface SetTextLineItemDescriptionChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetTextLineItemDescriptionChangeImpl

public interface SetTextLineItemDescriptionChange extends Change

Change triggered by the Set TextLineItem Description update action.


Example to create an instance using the builder pattern

     SetTextLineItemDescriptionChange setTextLineItemDescriptionChange = SetTextLineItemDescriptionChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .textLineItem(textLineItemBuilder -> textLineItemBuilder)
             .build()