Shipment Information details for Label request.

ShipmentInformation

interface ShipmentInformation {
    buyerReferenceNumber?: string;
    masterTrackingId?: string;
    shipFromParty?: PartyIdentification;
    shipMode?: ShipmentInformationShipModeEnum;
    shipToParty?: PartyIdentification;
    totalLabelCount?: number;
    vendorDetails?: VendorDetails;
    warehouseId?: string;
}

Properties

buyerReferenceNumber?: string

The buyer reference number is a unique identifier generated by the buyer for all Collect and WePay shipments.

ShipmentInformation

masterTrackingId?: string

Unique Id with which the shipment can be tracked for Small Parcels.

ShipmentInformation

shipFromParty?: PartyIdentification

ShipmentInformation

Type of shipment whether it is Small Parcel

ShipmentInformation

shipToParty?: PartyIdentification

ShipmentInformation

totalLabelCount?: number

Number of Labels that are created as part of this shipment.

ShipmentInformation

vendorDetails?: VendorDetails

ShipmentInformation

warehouseId?: string

Vendor Warehouse ID from where the shipment is scheduled to be picked up by buyer / Carrier.

ShipmentInformation