mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
23 lines
491 B
PHP
23 lines
491 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
|
|
class SegmentConstants
|
|
{
|
|
|
|
public const STANDARD_SEGMENT = 1;
|
|
|
|
public const CUSTOM_SEGMENT = 2;
|
|
|
|
public const SYSTEM_PRIMARY_CURRENCY = 'SYSTEM_PRIMARY_CURRENCY';
|
|
|
|
public const SUPPLIER_CURRENCIES = 'SUPPLIER_CURRENCIES';
|
|
|
|
public const PAYMENT_ATTEMPT_DURATION_LIMIT = 'PAYMENT_ATTEMPT_DURATION_LIMIT';
|
|
|
|
public const SERVICE_TYPE = 'SERVICE_TYPE';
|
|
|
|
public const CUSTOM_SERVICE_TYPE = 'CUSTOM_SERVICE_TYPE';
|
|
|
|
} |