2022-11-14 22:29:42 +01:00
|
|
|
<?php
|
|
|
|
|
|
2023-02-28 13:36:25 +01:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2022 Andreas Palm
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: LicenseRef-EGPL-3.1
|
|
|
|
|
*/
|
|
|
|
|
|
2022-11-14 22:29:42 +01:00
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
}
|