Packing slip information.

PackingSlip

interface PackingSlip {
    content: string;
    contentType?: "application/pdf";
    purchaseOrderNumber: string;
}

Properties

content: string

A Base64encoded string of the packing slip PDF.

PackingSlip

contentType?: "application/pdf"

The format of the file such as PDF, JPEG etc.

PackingSlip

purchaseOrderNumber: string

Purchase order number of the shipment that the packing slip is for.

PackingSlip