Change triggered by the Add LineItem update action.

interface AddOrderLineItemChange {
    change: string;
    nextValue: LineItem;
    previousValue: LineItem;
    type: "AddOrderLineItemChange";
}

Properties

change: string
nextValue: LineItem

Value after the change.

previousValue: LineItem

Value before the change.

type: "AddOrderLineItemChange"