@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
12 lines (9 loc) • 411 B
text/typescript
import { WeightDetails } from './../units/weight-details';
import { ShipmentPackage } from './shipment-package';
/** @description The shipment information related to the service point */
export class ServicePointShipment {
/** @description Detailed information about the weight of this item */
total_weight?: WeightDetails;
/**@description Pacakges in shipment */
packages?: Array<ShipmentPackage>;
}