UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

26 lines 1.11 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PickupShipment = exports.ShippedShipment = void 0; const label_1 = require("../manifests/label"); /** @description Basic structure for a shipment that has been shipped */ class ShippedShipment extends label_1.Label { /** @description The address that a shipment will be delivered to */ ship_to; /** @description Non-tracking alternative ids associated with this shipment */ alternative_identifiers; /** @description The service code used for this shipment */ service_code; /** @description The list of packages associated with this shipment */ packages; /** @description Advanced shipping options (Contains Alcohol, Non Machinable, etc) */ advanced_options; /** @description Add pick-up location detail*/ pickup_location; /** @description Add drop-off location detail*/ dropoff_location; } exports.ShippedShipment = ShippedShipment; class PickupShipment extends ShippedShipment { } exports.PickupShipment = PickupShipment; //# sourceMappingURL=shipped-shipment.js.map