/** @description Specifies the supported terms of trade codes (incoterms)*/
export enum TermsOfTradeCode {
  /** @description EX-WORKS incoterm  */
  EXW = 'exw',

  /** @description FREE CARRIER incoterm  */
  FCA = 'fca',
  /** @description CARRIAGE PAID TO incoterm */
  CPT = 'cpt',
  /** @description CARRIAGE AND INSURANCE PAID TO incoterm  */
  CIP = 'cip',
  /** @description DELIVERED PLACE UNLOADED incoterm, old name: DAT  */
  DPU = 'dpu',
  /** @description DELIVERED AT PLACE incoterm*/
  DAP = 'dap',
  /** @description DELIVERED DUTY PAID incoterm*/

  DDP = 'ddp',
  /** @description FREE ALONGSIDE SHIP incoterm (incoterm used for sea/inland waterway transport)     */
  FAS = 'fas',
  /** @description FREE ON BOARD incoterm (incoterm used for sea/inland waterway transport)     */
  FOB = 'fob',
  /** @description COST AND FREIGHT incoterm (incoterm used for sea/inland waterway transport)     */
  CFR = 'cfr',
  /** @description COST INSURANCE AND FREIGHT incoterm (incoterm used for sea/inland waterway transport)    */
  CIF = 'cif',
  /** @description DELIVERED DUTY UNPAID incoterm (incoterm retired in 2010)     */
  DDU = 'ddu',
  /** @description DELIVERED AT FRONTIER incoterm (incoterm retired in 2010)     */
  DAF = 'daf',
  /** @description DELIVERED EX QUAY incoterm (incoterm retired in 2010)     */
  DEQ = 'deq',
  /** @description DELIVERED EX SHIP incoterm (incoterm retired in 2010)     */
  DES = 'des',
}
