Produces the ParcelMeasurementsUpdated Message.

interface OrderSetParcelMeasurementsAction {
    action: "setParcelMeasurements";
    measurements?: ParcelMeasurements;
    parcelId?: string;
    parcelKey?: string;
}

Properties

action: "setParcelMeasurements"
measurements?: ParcelMeasurements

Value to set. If empty, any existing value is removed.

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.