Interface SetTextLineItemCustomTypeChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetTextLineItemCustomTypeChangeImpl

public interface SetTextLineItemCustomTypeChange extends Change

Change triggered by the Set TextLineItem Custom Type update action.


Example to create an instance using the builder pattern

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