@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (8 loc) • 499 B
text/typescript
import { WeightUnit } from './weight-unit';
/** @description Represents the actual weight and unit supplied by a carrier based on the ingredients provided. */
export class CarrierWeight {
/** @description The actual weight value assessed by the carrier based on the ingredients provided, it may be used for customer billing purposes. */
value?: number;
/** @description The unit of measurement for the carrier weight, it may be used for customer billing purposes. */
unit!: WeightUnit;
}