UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

22 lines 893 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PickupPackage = void 0; /** @description Basic structure for a package to be picked up */ class PickupPackage { /** @description The carrier tracking number for this shipment */ tracking_number; /** @description Alternative identifiers associated with this package */ alternative_identifiers; /** @description Details about the dimensions of the package */ dimension_details; /** @description Details about the weight of the package */ weight_details; /** @description The code associated with the package type */ package_code; /** @deprectated Please use the weight_details property */ weight; /** @deprectated Please use the dimension_details property */ dimensions; } exports.PickupPackage = PickupPackage; //# sourceMappingURL=pickup-package.js.map