Contains information on how items are shipped to Customers, for example, a delivery note.

interface Delivery {
    address?: Address;
    createdAt: string;
    custom?: CustomFields;
    id: string;
    items: DeliveryItem[];
    key?: string;
    parcels: Parcel[];
}

Properties

address?: Address

Address to which Parcels are delivered.

createdAt: string

Date and time (UTC) the Delivery was created.

custom?: CustomFields

Custom Fields of the Delivery.

id: string

Unique identifier of the Delivery.

items: DeliveryItem[]

Line Items or Custom Line Items that are delivered.

key?: string

User-defined unique identifier of the Delivery.

parcels: Parcel[]

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