/** * Specifies the incoterms, as published in an external incoterms code list. * ISO20022 External Code * Original name: ExternalIncoterms1Code */ export declare enum Incoterms { /** Cost and Freight (sea and inland waterway transport) - Incoterms 2010 */ CFR = "CFR", /** Cost, Insurance and Freight (sea and inland waterway transport) - Incoterms 2010 */ CIF = "CIF", /** Carriage and Insurance Paid To (any mode of transport, including multimodal) - Incoterms 2010 */ CIP = "CIP", /** Carriage Paid To (any mode of transport, including multimodal) - Incoterms 2010 */ CPT = "CPT", /** Delivered at Place (any mode of transport, including multimodal) - Incoterms 2010 */ DAP = "DAP", /** Delivered at Terminal (any mode of transport, including multimodal) - Incoterms 2010 */ DAT = "DAT", /** Delivered Duty Paid (any mode of transport, including multimodal) - Incoterms 2010 */ DDP = "DDP", /** Ex Works (any mode of transport, including multimodal) - Incoterms 2010 */ EXW = "EXW", /** Free Alongside Ship (sea and inland waterway transport) - Incoterms 2010 */ FAS = "FAS", /** Free Carrier (any mode of transport, including multimodal) - Incoterms 2010 */ FCA = "FCA", /** Free On Board (sea and inland waterway transport) - Incoterms 2010 */ FOB = "FOB" }