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

Properties

address?: Address
createdAt: string
custom?: CustomFields

Custom Fields for the Transaction.

id: string

Unique identifier of the Delivery.

items: DeliveryItem[]

Items which are shipped in this delivery regardless their distribution over several parcels. Can also be specified individually for each Parcel.

parcels: Parcel[]

Generated using TypeDoc