UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

9 lines (8 loc) 277 B
import { WeightUnit } from '../units'; /** @description A measurement of weight */ export interface Weight { /** @description The unit this weight was measured in */ unit: WeightUnit; /** @description The value of the weight in weight units */ value: number; }