Label details as part of the transport label response

LabelData

interface LabelData {
    carrierCode?: string;
    label?: string;
    labelFormat?: "PDF";
    labelSequenceNumber?: number;
    trackingId?: string;
}

Properties

carrierCode?: string

Unique identification of the carrier.

LabelData

label?: string

The base-64 encoded string that represents the shipment label.

LabelData

labelFormat?: "PDF"

The format of the label.

LabelData

labelSequenceNumber?: number

A sequential number assigned to each label within a shipment.

LabelData

trackingId?: string

Tracking Id for the transportation.

LabelData