UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

14 lines (13 loc) 411 B
import { Currency } from '../currency'; import { WeightDetails } from '../../units'; /** @description Basic structure of an item in a customs declaration */ export interface CustomsItem { description?: string; quantity?: number; value?: Currency; country_of_origin?: string; harmonized_tariff_code?: string; sku?: string; sku_description?: string; item_weight?: WeightDetails; }