Change triggered by the Set TextLineItem Custom Type update action.

interface SetTextLineItemCustomTypeChange {
    change: string;
    nextValue: CustomFields;
    previousValue: CustomFields;
    textLineItem: TextLineItemValue;
    type: "SetTextLineItemCustomTypeChange";
}

Properties

change: string
nextValue: CustomFields

Value after the change.

previousValue: CustomFields

Value before the change.

textLineItem: TextLineItemValue

Holds information about the updated Text Line Item.

type: "SetTextLineItemCustomTypeChange"