From 4970e5d0d86248cadb541cba30bc655c76947fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Derya=20=C3=87akmak?= <36774966+deryacakmak@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:14:39 +0300 Subject: [PATCH] Akbank and Tap Integration (#97) --- src/Model/Currency.php | 5 +++++ src/Model/PosIntegrator.php | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/Model/Currency.php b/src/Model/Currency.php index 2383e85..ae85c4e 100644 --- a/src/Model/Currency.php +++ b/src/Model/Currency.php @@ -15,4 +15,9 @@ class Currency const IQD = 'IQD'; const AZN = 'AZN'; const KZT = 'KZT'; + const KWD = 'KWD'; + const SAR = 'SAR'; + const BHD = 'BHD'; + const RUB = 'RUB'; + const JPY = 'JPY'; } diff --git a/src/Model/PosIntegrator.php b/src/Model/PosIntegrator.php index fc81680..90f8936 100644 --- a/src/Model/PosIntegrator.php +++ b/src/Model/PosIntegrator.php @@ -40,4 +40,6 @@ class PosIntegrator const PAYCELL = 'PAYCELL'; const TAMI = 'TAMI'; const QNB_PAY = 'QNB_PAY'; + const AKBANK_VPOS = 'AKBANK_VPOS'; + const TAP = 'TAP'; }