diff --git a/src/Adapter/PaymentAdapter.php b/src/Adapter/PaymentAdapter.php index fd9065a..516a81f 100644 --- a/src/Adapter/PaymentAdapter.php +++ b/src/Adapter/PaymentAdapter.php @@ -193,6 +193,12 @@ public function updatePaymentTransaction($paymentTransactionId, array $request) return $this->httpPut($path, $request); } + public function createApplePayMerchantSession(array $request) + { + $path = "/payment/v1/apple-pay/merchant-sessions"; + return $this->httpPost($path, $request); + } + public function is3DSecureCallbackVerified($threeDSecureCallbackKey, $params) { $hash = $params["hash"]; diff --git a/src/Model/TokenizedCardType.php b/src/Model/TokenizedCardType.php new file mode 100644 index 0000000..5db5b30 --- /dev/null +++ b/src/Model/TokenizedCardType.php @@ -0,0 +1,8 @@ +