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
items: DeliveryItem[]
parcels: Parcel[]