Information regarding the appearance, content, and shipment of a Parcel.

interface Parcel {
    createdAt: string;
    custom?: CustomFields;
    id: string;
    items?: DeliveryItem[];
    key?: string;
    measurements?: ParcelMeasurements;
    trackingData?: TrackingData;
}

Properties

createdAt: string

Date and time (UTC) the Parcel was created.

custom?: CustomFields

Custom Fields of the Parcel.

id: string

Unique identifier of the Parcel.

items?: DeliveryItem[]

Line Items or Custom Line Items delivered in this Parcel.

key?: string

User-defined unique identifier of the Parcel.

measurements?: ParcelMeasurements

Information about the dimensions of the Parcel.

trackingData?: TrackingData

Shipment tracking information of the Parcel.