zugferd-code-lists
Version:
ZUGFeRD code lists, e.g. languages enum, currencies enum, countries enum, etc.
58 lines (56 loc) • 1.67 kB
text/typescript
declare enum INCOTERMS {
/**
* Delivery arranged by supplier
*/
DeliveryArrangedBySupplier = "1",
/**
* Delivery arranged by logistic service provider
*/
DeliveryArrangedByLogisticServiceProvider = "2",
/**
* Cost and Freight
*/
CostAndFreight = "CFR",
/**
* Cost, Insurance and Freight
*/
CostInsuranceAndFreight = "CIF",
/**
* Carriage and Insurance Paid to (insert named place of destination)
*/
CarriageAndInsurancePaidToInsertNamedPlaceDestination = "CIP",
/**
* Carriage Paid To (insert named place of destination)
*/
CarriagePaidToInsertNamedPlaceDestination = "CPT",
/**
* Delivered At Place (insert named place of destination)
*/
DeliveredAtPlaceInsertNamedPlaceDestination = "DAP",
/**
* Delivered Duty Paid (insert named place of destination)
*/
DeliveredDutyPaidInsertNamedPlaceDestination = "DDP",
/**
* Delivered At Place Unloaded (insert named place of unloading)
*/
DeliveredAtPlaceUnloadedInsertNamedPlaceUnloading = "DPU",
/**
* Ex Works (insert named place of delivery)
*/
ExWorksInsertNamedPlaceDelivery = "EXW",
/**
* Free Alongside Ship (insert named port of shipment)
*/
FreeAlongsideShipInsertNamedPortShipment = "FAS",
/**
* Free Carrier (insert named place of delivery)
*/
FreeCarrierInsertNamedPlaceDelivery = "FCA",
/**
* Free On Board (insert named port of shipment)
*/
FreeOnBoardInsertNamedPortShipment = "FOB"
}
declare function description(value: INCOTERMS): string;
export { INCOTERMS, description };