Change triggered by the following update actions:

- [Remove Parcel From Delivery](ctp:api:type:OrderRemoveParcelFromDeliveryAction) on Orders.
- [Remove Parcel From Delivery](ctp:api:type:StagedOrderRemoveParcelFromDeliveryAction) on Staged Orders.
interface RemoveParcelFromDeliveryChange {
    change: string;
    deliveryId: string;
    previousValue: Parcel;
    type: "RemoveParcelFromDeliveryChange";
}

Properties

change: string
deliveryId: string

id of the Delivery from which the Parcel was removed.

previousValue: Parcel

Value before the change.

type: "RemoveParcelFromDeliveryChange"