-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8c9a6e
commit 3cdeb3b
Showing
14 changed files
with
373 additions
and
50 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
|
||
namespace GlobalPayments\Api\Entities\Enums; | ||
|
||
|
||
use GlobalPayments\Api\Entities\Enum; | ||
|
||
class DecoupledFlowRequest extends Enum | ||
{ | ||
const DECOUPLED_PREFERRED = "DECOUPLED_PREFERRED"; | ||
const DO_NOT_USE_DECOUPLED = "DO_NOT_USE_DECOUPLED"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
|
||
namespace GlobalPayments\Api\Entities\Enums; | ||
|
||
|
||
use GlobalPayments\Api\Entities\Enum; | ||
|
||
class ExemptStatus extends Enum | ||
{ | ||
const LOW_VALUE = "LOW_VALUE"; | ||
const TRANSACTION_RISK_ANALYSIS = "TRANSACTION_RISK_ANALYSIS"; | ||
const TRUSTED_MERCHANT = "TRUSTED_MERCHANT"; | ||
const SECURE_CORPORATE_PAYMENT = "SECURE_CORPORATE_PAYMENT"; | ||
const SCA_DELEGATION = "SCA_DELEGATION"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
|
||
namespace GlobalPayments\Api\Entities\Enums; | ||
|
||
|
||
use GlobalPayments\Api\Entities\Enum; | ||
|
||
class MerchantInitiatedRequestType extends Enum | ||
{ | ||
const RECURRING_TRANSACTION = "RECURRING_TRANSACTION"; | ||
const INSTALLMENT_TRANSACTION = "INSTALLMENT_TRANSACTION"; | ||
const ADD_CARD = "ADD_CARD"; | ||
const MAINTAIN_CARD_INFORMATION = "MAINTAIN_CARD_INFORMATION"; | ||
const ACCOUNT_VERIFICATION = "ACCOUNT_VERIFICATION"; | ||
const SPLIT_OR_DELAYED_SHIPMENT = "SPLIT_OR_DELAYED_SHIPMENT"; | ||
const TOP_UP = "TOP_UP"; | ||
const MAIL_ORDER = "MAIL_ORDER"; | ||
const TELEPHONE_ORDER = "TELEPHONE_ORDER"; | ||
const WHITELIST_STATUS_CHECK = "WHITELIST_STATUS_CHECK"; | ||
const OTHER_PAYMENT = "OTHER_PAYMENT"; | ||
const BILLING_AGREEMENT = "BILLING_AGREEMENT"; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
|
||
namespace GlobalPayments\Api\Entities\Enums; | ||
|
||
|
||
class WhiteListStatus | ||
{ | ||
const WHITELISTED = "WHITELISTED"; | ||
const NOT_WHITELISTED = "NOT_WHITELISTED"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.