Generated after a successful Set Parcel Items update action.

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

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 Multi ShippingMode.

type: "ParcelItemsUpdated"

Generated using TypeDoc