Change triggered by the following update actions:

- [Set Parcel Items](ctp:api:type:OrderSetParcelItemsAction) on Orders.
- [Set Parcel Items](ctp:api:type:StagedOrderSetParcelItemsAction) on Staged Orders.
interface SetParcelItemsChange {
    change: string;
    nextValue: DeliveryItem[];
    parcel: ParcelChangeValue;
    previousValue: DeliveryItem[];
    type: "SetParcelItemsChange";
}

Properties

change: string
nextValue: DeliveryItem[]

Value after the change.

Information about the updated Parcel.

previousValue: DeliveryItem[]

Value before the change.

type: "SetParcelItemsChange"