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";
}

Hierarchy (View Summary)

  • IChange
    • RemoveParcelFromDeliveryChange

Properties

change: string

Type of change on a resource that is similar to the update action it relates to, where possible. It is not a unique identifier for the data structure, for example, the setDescription change can occur with a localized and non-localized representation.

[Records](ctp:history:type:Record) can be filtered by this value using the `changes` query parameter.
deliveryId: string

id of the Delivery from which the Parcel was removed.

previousValue: Parcel

Value before the change.

type: "RemoveParcelFromDeliveryChange"

Unique discriminator value to reliably deserialize the data type.