interface DeliveryDraft {
    address?: AddressDraft;
    custom?: CustomFieldsDraft;
    items?: DeliveryItem[];
    key?: string;
    parcels?: ParcelDraft[];
}

Properties

address?: AddressDraft

Address to which the Parcels are delivered.

Custom Fields for the Delivery.

items?: DeliveryItem[]

Line Items or Custom Line Items to deliver. It can also be specified individually for each Parcel.

key?: string

User-defined unique identifier of the Delivery.

parcels?: ParcelDraft[]

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