-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIncoterms.ts
More file actions
29 lines (29 loc) · 1.27 KB
/
Incoterms.ts
File metadata and controls
29 lines (29 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* Specifies the incoterms, as published in an external incoterms code list.
* ISO20022 External Code
* Original name: ExternalIncoterms1Code
*/
export 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",
}