Interface SetCustomLineItemCustomTypeChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetCustomLineItemCustomTypeChangeImpl

public interface SetCustomLineItemCustomTypeChange extends Change

Change triggered by the following update actions:

  • Set CustomLineItem CustomField on Orders.
  • Set CustomLineItem CustomField on Staged Orders.

Example to create an instance using the builder pattern

     SetCustomLineItemCustomTypeChange setCustomLineItemCustomTypeChange = SetCustomLineItemCustomTypeChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .customLineItem(customLineItemBuilder -> customLineItemBuilder)
             .customLineItemId("{customLineItemId}")
             .build()