Details of the shipment label.

LabelData

interface LabelData {
    content: string;
    packageIdentifier?: string;
    shipMethod?: string;
    shipMethodName?: string;
    trackingNumber?: string;
}

Properties

content: string

This field will contain the Base64encoded string of the shipment label content.

LabelData

packageIdentifier?: string

Identifier for the package. The first package will be 001, the second 002, and so on. This number is used as a reference to refer to this package from the pallet level.

LabelData

shipMethod?: string

Ship method to be used for shipping the order. Amazon defines Ship Method Codes indicating shipping carrier and shipment service level. Ship Method Codes are case and format sensitive. The same ship method code should returned on the shipment confirmation. Note that the Ship Method Codes are vendor specific and will be provided to each vendor during the implementation.

LabelData

shipMethodName?: string

Shipping method name for internal reference.

LabelData

trackingNumber?: string

Package tracking identifier from the shipping carrier.

LabelData