@gradientedge/commercetools-utils
    Preparing search index...

    Interface ParcelItemsUpdatedMessagePayload

    Generated after a successful Set Parcel Items update action.

    interface ParcelItemsUpdatedMessagePayload {
        deliveryId: string;
        items: DeliveryItem[];
        oldItems: DeliveryItem[];
        parcelId: string;
        shippingKey?: string;
        type: "ParcelItemsUpdated";
    }

    Hierarchy (View Summary)

    Index

    Properties

    deliveryId: string

    Unique identifier of the Delivery.

    items: DeliveryItem[]

    Delivery Items after the Set Parcel Items update action.

    oldItems: DeliveryItem[]

    Delivery Items before the Set Parcel Items update action.

    parcelId: string

    Unique identifier of the Parcel.

    shippingKey?: string

    User-defined unique identifier of the Shipping Method in a Cart with Multiple ShippingMode.

    type: "ParcelItemsUpdated"