Change triggered by the following update actions:

- [Set CustomLineItem ShippingDetails](ctp:api:type:OrderSetCustomLineItemShippingDetailsAction) on Orders.
- [Set CustomLineItem ShippingDetails](ctp:api:type:StagedOrderSetCustomLineItemShippingDetailsAction) on Staged Orders.
interface SetCustomLineItemShippingDetailsChange {
    change: string;
    customLineItemId: string;
    nextValue: ItemShippingDetails;
    previousValue: ItemShippingDetails;
    type: "SetCustomLineItemShippingDetailsChange";
}

Properties

change: string
customLineItemId: string

id of the updated CustomLineItem.

Value after the change.

previousValue: ItemShippingDetails

Value before the change.

type: "SetCustomLineItemShippingDetailsChange"