Interface SetTextLineItemCustomFieldChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetTextLineItemCustomFieldChangeImpl

public interface SetTextLineItemCustomFieldChange extends Change

Change triggered by the Set TextLineItem CustomField update action.


Example to create an instance using the builder pattern

     SetTextLineItemCustomFieldChange setTextLineItemCustomFieldChange = SetTextLineItemCustomFieldChange.builder()
             .change("{change}")
             .name("{name}")
             .customTypeId("{customTypeId}")
             .textLineItem(textLineItemBuilder -> textLineItemBuilder)
             .build()