Produces the ParcelRemovedFromDelivery Message.

interface OrderRemoveParcelFromDeliveryAction {
    action: "removeParcelFromDelivery";
    parcelId?: string;
    parcelKey?: string;
}

Properties

action: "removeParcelFromDelivery"
parcelId?: string

id of an existing Parcel.

Either `parcelId` or `parcelKey` must be provided.
parcelKey?: string

key of an existing Parcel.

Either `parcelId` or `parcelKey` must be provided.