@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
26 lines • 1.31 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Package = void 0;
/** @description Basic structure for a package */
class Package {
/** @description Package code defined for the carrier in ShipEngine. */
package_code;
/** @description A summary of the content of a given package. Required to ship to and from Mexico. Maximum length of 35 characters. */
content_description;
/** @description Details about the dimensions of the package */
dimension_details;
/** @description Details about the weight of the package */
weight_details;
/** @description The insured value of this package. */
insured_value;
/** @description The message the seller requested to have on their label */
label_messages;
/** @deprecated For shipment-level information, the shipment `customs` object should be used, and for parcel-level items, the `packages.products` array should be used. */
customs;
/** @description List of products goods model associated with this package passed to the carrier. */
products;
/** @description An object containing information specific to the dangerous goods aspects of an individual package. */
dangerous_goods_package_info;
}
exports.Package = Package;
//# sourceMappingURL=package.js.map