UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

9 lines (8 loc) 251 B
import { WeightUnit } from './weight-unit'; /** @description Basic structure for weight */ export interface WeightDetails { weight_in_ounces?: number; weight_in_grams?: number; source_weight?: number; source_weight_unit: WeightUnit; }