Generated after a successful Remove CustomLineItem update action.

interface OrderCustomLineItemRemovedMessagePayload {
    customLineItem: CustomLineItem;
    customLineItemId: string;
    customLineItemKey?: string;
    type: "OrderCustomLineItemRemoved";
}

Properties

customLineItem: CustomLineItem

Custom Line Item that was removed from the Order.

customLineItemId: string

Unique identifier of the Custom Line Item.

customLineItemKey?: string

User-defined unique identifier of the Custom Line Item.

type: "OrderCustomLineItemRemoved"