Interface ChangeTextLineItemsOrderChange

All Superinterfaces:
Change
All Known Implementing Classes:
ChangeTextLineItemsOrderChangeImpl

public interface ChangeTextLineItemsOrderChange extends Change

Change triggered by the Change TextLineItems Order update action.


Example to create an instance using the builder pattern

     ChangeTextLineItemsOrderChange changeTextLineItemsOrderChange = ChangeTextLineItemsOrderChange.builder()
             .change("{change}")
             .plusPreviousValue(previousValueBuilder -> previousValueBuilder)
             .plusNextValue(nextValueBuilder -> nextValueBuilder)
             .build()