mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
27 lines
593 B
PHP
27 lines
593 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';
|
|
|
|
public const SERVICE_CHARGE = 'SERVICE_CHARGE';
|
|
|
|
public const TRANSFER_FEE = 'TRANSFER_FEE';
|
|
|
|
} |