The payload for the purchaseShipment operation.

PurchaseShipmentResult

interface PurchaseShipmentResult {
    packageDocumentDetails: PackageDocumentDetail[];
    promise: Promise;
    shipmentId: string;
}

Properties

packageDocumentDetails: PackageDocumentDetail[]

A list of post-purchase details about a package that will be shipped using a shipping service.

PurchaseShipmentResult

promise: Promise

PurchaseShipmentResult

shipmentId: string

The unique shipment identifier provided by a shipping service.

PurchaseShipmentResult