mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-28 15:40:28 +01:00
13 lines
243 B
PHP
13 lines
243 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Modules\ShippingMethod\Model;
|
||
|
|
||
|
class CustomsInfo
|
||
|
{
|
||
|
const CUSTOMS_TYPE_GIFT = 0;
|
||
|
const CUSTOMS_TYPE_DOCUMENTS = 1;
|
||
|
const CUSTOMS_TYPE_GOODS = 2;
|
||
|
const CUSTOMS_TYPE_SAMPLE = 3;
|
||
|
const CUSTOMS_TYPE_RETURN = 4;
|
||
|
|
||
|
}
|