Interface ParcelRemovedFromDeliveryMessagePayload

Generated after a successful Remove Parcel From Delivery update action.

interface ParcelRemovedFromDeliveryMessagePayload {
    deliveryId: string;
    parcel: Parcel;
    shippingKey?: string;
    type: "ParcelRemovedFromDelivery";
}

Properties

deliveryId: string

Unique identifier of the Delivery.

parcel: Parcel

Parcel that was removed from the Delivery.

shippingKey?: string

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

type: "ParcelRemovedFromDelivery"

Generated using TypeDoc