UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

10 lines (8 loc) 536 B
import { Currency } from '../currency'; /** @description Estimated charges related to importing goods, such as customs duties, taxes, and other import-related fees. Depending on carrier, if provided they will be displayed on the Commercial Invoice. */ export class EstimatedImportCharges { /** @description Estimated amount and currency of import taxes, such as Value-Added Tax (VAT) or Goods and Services Tax (GST). */ taxes?: Currency; /** @description Estimated amount and currency of import duties. */ duties?: Currency; }