Represents the confirmation details of a shipment, including the purchase order number and other shipment details.

ShipmentConfirmation

interface ShipmentConfirmation {
    containers?: Container[];
    items: Item[];
    purchaseOrderNumber: string;
    sellingParty: PartyIdentification;
    shipFromParty: PartyIdentification;
    shipmentDetails: ShipmentDetails;
}

Properties

containers?: Container[]

Provide the details of the items in this shipment. If any of the item details field is common at a package or a pallet level, then provide them at the corresponding package.

ShipmentConfirmation

items: Item[]

Provide the details of the items in this shipment. If any of the item details field is common at a package or a pallet level, then provide them at the corresponding package.

ShipmentConfirmation

purchaseOrderNumber: string

Purchase order number corresponding to the shipment.

ShipmentConfirmation

sellingParty: PartyIdentification

ShipmentConfirmation

shipFromParty: PartyIdentification

ShipmentConfirmation

shipmentDetails: ShipmentDetails

ShipmentConfirmation