Change triggered by the Set TextLineItem Description update action.

interface SetTextLineItemDescriptionChange {
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    textLineItem: TextLineItemValue;
    type: "SetTextLineItemDescriptionChange";
}

Properties

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

textLineItem: TextLineItemValue

Holds information about the updated Text Line Item.

type: "SetTextLineItemDescriptionChange"