BuyNowPayLater
3 years ago
DigitalWallets
2 years ago
ThreeDSecure
3 years ago
AbstractRequest.php
2 years ago
AuthorizationRequest.php
3 years ago
CaptureAuthorizationRequest.php
3 years ago
CreateManifestRequest.php
3 years ago
CreateTransactionKeyRequest.php
3 years ago
GetAccessTokenRequest.php
3 years ago
RefundRequest.php
3 years ago
RequestArg.php
2 years ago
RequestInterface.php
3 years ago
ReversalRequest.php
3 years ago
SaleRequest.php
3 years ago
TransactionDetailRequest.php
3 years ago
VerifyRequest.php
3 years ago
CreateTransactionKeyRequest.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace GlobalPayments\WooCommercePaymentGatewayProvider\Gateways\Requests; |
| 4 | |
| 5 | use GlobalPayments\WooCommercePaymentGatewayProvider\Gateways\AbstractGateway; |
| 6 | |
| 7 | defined( 'ABSPATH' ) || exit; |
| 8 | |
| 9 | class CreateTransactionKeyRequest extends AbstractRequest { |
| 10 | public function get_transaction_type() { |
| 11 | return AbstractGateway::TXN_TYPE_CREATE_TRANSACTION_KEY; |
| 12 | } |
| 13 | |
| 14 | public function get_args() { |
| 15 | return array(); |
| 16 | } |
| 17 | } |
| 18 |