The shipment related data.

Shipment

interface Shipment {
    acceptedRate?: AcceptedRate;
    clientReferenceId: string;
    containers: Container[];
    shipFrom: Address;
    shipmentId: string;
    shipper?: Party;
    shipTo: Address;
}

Properties

acceptedRate?: AcceptedRate

Shipment

clientReferenceId: string

Client reference id.

Shipment

containers: Container[]

A list of container.

Shipment

shipFrom: Address

Shipment

shipmentId: string

The unique shipment identifier.

Shipment

shipper?: Party

Shipment

shipTo: Address

Shipment