Tracking details for the shipment. If using SPD transportation, this can be for each case. If not using SPD transportation, this is a single tracking entry for the entire shipment.

TrackingDetails

interface TrackingDetails {
    bookingId?: string;
    carrierCode?: CarrierCode;
    shipBy: string;
}

Properties

bookingId?: string

The identifier that is received from transportation to uniquely identify a booking.

TrackingDetails

carrierCode?: CarrierCode

TrackingDetails

shipBy: string

Timestamp denoting when the shipment will be shipped Date should be in ISO 8601 format as defined by date-time.

TrackingDetails