Change triggered by the following update actions:

- [Set CustomLineItem CustomField](ctp:api:type:OrderSetCustomLineItemCustomTypeAction) on Orders.
- [Set CustomLineItem CustomField](ctp:api:type:StagedOrderSetCustomLineItemCustomTypeAction) on Staged Orders.
interface SetCustomLineItemCustomTypeChange {
    change: string;
    customLineItem: LocalizedString;
    customLineItemId: string;
    nextValue: CustomFields;
    previousValue: CustomFields;
    type: "SetCustomLineItemCustomTypeChange";
}

Properties

change: string
customLineItem: LocalizedString

Name of the updated CustomLineItem.

customLineItemId: string

id of the updated CustomLineItem.

nextValue: CustomFields

Value after the change.

previousValue: CustomFields

Value before the change.

type: "SetCustomLineItemCustomTypeChange"