b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / vendor / vertex / sdk / src / Data /
Filename/home/dev2.destoffenstraat.com/vendor/vertex/sdk/src/Data/DeliveryTerm.php
Size2.83 kb
Permissionrw-rw-rw-
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified23-Sep-2020 09:46
Last accessed23-Aug-2025 03:56
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php

/**
* @copyright Vertex. All rights reserved. https://www.vertexinc.com/
* @author Mediotype Development <diveinto@mediotype.com>
*/

namespace Vertex\Data;

/**
* Delivery Terms
*
* An identifier that determines the point in which the title transfer and risk of a supply takes place. A Delivery Term
* Code identifies the importer of record on cross-border transactions. These terms are also known as Shipping Terms or
* Incoterm. Delivery Term information is critical in Value Added Tax transactions to determine the place of supply in
* distance selling. For detailed explanations of these terms, refer to the Terms of Sales definition in the glossary of
* the U.S. Department of Transportation Maritime Administration Web site at
* https://www.marad.dot.gov/wp-content/uploads/pdf/Glossary_final.pdf
*
* @api
*/
interface DeliveryTerm
{
/**
* Cost and Freight
*
* Customer is the importer of record
*/
const CFR = 'CFR';

/**
* Cost Insurance and Freight
*
* Customer is the imported of record
*/
const CIF = 'CIF';

/**
* Carriage Insurance Paid To
*
*The customer is the importer of record
*/
const CIP = 'CIP';

/**
* Carriage Paid To
*
* The customer is the importer of record
*/
const CPT = 'CPT';

/**
* Customer Ships
*
* The customer is the importer of record
*/
const CUS = 'CUS';

/**
* Delivered at Frontier
*
* The customer is the importer of record
*/
const DAF = 'DAF';

/**
* Delivered at Place
*
* The customer is the importer of record
*/
const DAP = 'DAP';

/**
* Delivered at Terminal
*
* The customer is the importer of record
*/
const DAT = 'DAT';

/**
* Delivery Duty Paid
*
* The supplier is the importer of record
*/
const DDP = 'DDP';

/**
* Delivery Duty Unpaid
*
* The customer is the importer of record
*/
const DDU = 'DDU';

/**
* Delivered Ex Quay Duty Unpaid
*
* The customer is the importer of record
*/
const DEQ = 'DEQ';

/**
* Delivered Ex-Ship
*
* The customer is the importer of record
*/
const DES = 'DES';

/**
* Ex Works
*
* The customer is the importer of record
*/
const EXW = 'EXW';

/**
* Free Along Side Ship
*
* The customer is the importer of record
*/
const FAS = 'FAS';

/**
* Free Carrier
*
* The customer is the importer of record
*/
const FCA = 'FCA';

/**
* Free Onboard Vessel
*
* The customer is the importer of record
*/
const FOB = 'FOB';

/**
* Supplier Ships
*
* The supplier is the importer of record
*/
const SUP = 'SUP';
}