14 lines
199 B
PHP
14 lines
199 B
PHP
<?php
|
|
|
|
namespace x13allegro\Api\Model\Order;
|
|
|
|
use x13allegro\Component\Enum;
|
|
|
|
/**
|
|
* @method static CarrierOperator OTHER()
|
|
*/
|
|
final class CarrierOperator extends Enum
|
|
{
|
|
const OTHER = 'Inny';
|
|
}
|