mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 20:43:56 +00:00
29 lines
630 B
PHP
29 lines
630 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
|
|
class SegmentConstants
|
|
{
|
|
|
|
public const STANDARD_SEGMENT = 1;
|
|
|
|
public const CUSTOM_SEGMENT = 2;
|
|
|
|
public const LABEL_SEGMENT = 3;
|
|
|
|
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';
|
|
|
|
} |