mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
19 lines
389 B
PHP
19 lines
389 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class PerfexCRMCustomFields {
|
|
|
|
public const CUSTOMERS_EXCHANGE_REFERENCE = 1;
|
|
|
|
public const CUSTOMERS_SHIPPING_PORTAL_REFERENCE = 2;
|
|
|
|
public const LEADS_EXCHANGE_REFERENCE = 3;
|
|
|
|
public const LEADS_SHIPPING_PORTAL_REFERENCE = 4;
|
|
|
|
public const TICKETS_CUSTOM_TAGS = 5;
|
|
|
|
public const TASKS_DEPARTMENT = 6;
|
|
}
|