Interface ParcelTrackingDataUpdatedMessagePayload

Generated after a successful Set Parcel TrackingData update action.

interface ParcelTrackingDataUpdatedMessagePayload {
    deliveryId: string;
    parcelId: string;
    shippingKey?: string;
    trackingData?: TrackingData;
    type: "ParcelTrackingDataUpdated";
}

Properties

deliveryId: string

Unique identifier of the Delivery.

parcelId: string

Unique identifier of the Parcel.

shippingKey?: string

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

trackingData?: TrackingData

The Tracking Data that was added to the Parcel.

type: "ParcelTrackingDataUpdated"

Generated using TypeDoc