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;
}
