Change triggered by the Set TextLineItem CustomField update action.

interface SetTextLineItemCustomFieldChange {
    change: string;
    customTypeId: string;
    name: string;
    nextValue: any;
    previousValue: any;
    textLineItem: TextLineItemValue;
    type: "SetTextLineItemCustomFieldChange";
}

Properties

change: string
customTypeId: string

id of the referenced Type.

name: string

Name of the Custom Field.

nextValue: any

Value after the change.

previousValue: any

Value before the change.

textLineItem: TextLineItemValue

Holds information about the updated Text Line Item.

type: "SetTextLineItemCustomFieldChange"