Change triggered by the following update actions:

- [Set CustomLineItem Custom Type](ctp:api:type:OrderSetCustomLineItemCustomFieldAction) on Orders.
- [Set CustomLineItem Custom Type](ctp:api:type:StagedOrderSetCustomLineItemCustomFieldAction) on Staged Orders.
interface SetCustomLineItemCustomFieldChange {
    change: string;
    customLineItem: LocalizedString;
    customLineItemId: string;
    name: string;
    nextValue: any;
    previousValue: any;
    type: "SetCustomLineItemCustomFieldChange";
}

Properties

change: string
customLineItem: LocalizedString

Name of the updated CustomLineItem.

customLineItemId: string

id of the updated CustomLineItem.

name: string

Name of the Custom Field.

nextValue: any

Value after the change.

previousValue: any

Value before the change.

type: "SetCustomLineItemCustomFieldChange"