mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
43 lines
663 B
PHP
43 lines
663 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Api\Shipping
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Api\Shipping;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Shipping Type
|
|
*
|
|
* @package phpOMS\Api\Shipping
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class ShippingType extends Enum
|
|
{
|
|
public const DHL = 1;
|
|
|
|
public const DPD = 2;
|
|
|
|
public const FEDEX = 3;
|
|
|
|
public const ROYALMAIL = 4;
|
|
|
|
public const TNT = 5;
|
|
|
|
public const UPS = 6;
|
|
|
|
public const USPS = 7;
|
|
}
|