@shipengine/connect-fulfillment-provider-api
Version:
OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API
13 lines (12 loc) • 482 B
TypeScript
import { CustomsContentTypes } from './customs-content-types';
import { CustomsNonDelivery } from './customs-non-delivery';
import { CustomsItem } from './customs-item';
import { Currency } from '../currency';
/** @description Basic structure for a customs declaration. */
export interface Customs {
contents?: CustomsContentTypes;
non_delivery?: CustomsNonDelivery;
customs_items: CustomsItem[];
buyer_shipping_amount_paid?: Currency;
duties_paid?: Currency;
}