Skip to content

Commit

Permalink
Adds multinet as APM (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
reywyn authored Jun 7, 2024
1 parent 7d18e3e commit 57c3417
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 19 deletions.
2 changes: 2 additions & 0 deletions src/Model/ApmType.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ class ApmType
const HASO = 'HASO';
const PAYCELL = 'PAYCELL';
const ZIP = 'ZIP';
const MULTINET = 'MULTINET';
const MULTINET_GIFT = 'MULTINET_GIFT';
const FUND_TRANSFER = 'FUND_TRANSFER';
const CASH_ON_DELIVERY = 'CASH_ON_DELIVERY';
}
2 changes: 2 additions & 0 deletions src/Model/PaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ class PaymentMethod
const PAYPAL = 'PAYPAL';
const KLARNA = 'KLARNA';
const AFTERPAY = 'AFTERPAY';
const MULTINET = 'MULTINET';
const MULTINET_GIFT = 'MULTINET_GIFT';
}
39 changes: 20 additions & 19 deletions src/Model/PaymentProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@

class PaymentProvider
{
const BANK = 'BANK';
const CG_WALLET = 'CG_WALLET';
const MASTERPASS = 'MASTERPASS';
const GARANTI_PAY = 'GARANTI_PAY';
const PAPARA = "PAPARA";
const PAYONEER = "PAYONEER";
const SODEXO = "SODEXO";
const EDENRED = "EDENRED";
const METROPOL = "METROPOL";
const STRIPE = "STRIPE";
const KASPI = "KASPI";
const INSTANT_TRANSFER = "INSTANT_TRANSFER";
const TOMPAY = "TOMPAY";
const YKB_WORLD_PAY = "YKB_WORLD_PAY";
const APPLEPAY = "APPLEPAY";
const GOOGLEPAY = "GOOGLEPAY";
const HASO = "HASO";
const PAYCELL = "PAYCELL";
const ZIP = "ZIP";
const BANK = 'BANK';
const CG_WALLET = 'CG_WALLET';
const MASTERPASS = 'MASTERPASS';
const GARANTI_PAY = 'GARANTI_PAY';
const PAPARA = "PAPARA";
const PAYONEER = "PAYONEER";
const SODEXO = "SODEXO";
const EDENRED = "EDENRED";
const METROPOL = "METROPOL";
const STRIPE = "STRIPE";
const KASPI = "KASPI";
const INSTANT_TRANSFER = "INSTANT_TRANSFER";
const TOMPAY = "TOMPAY";
const YKB_WORLD_PAY = "YKB_WORLD_PAY";
const APPLEPAY = "APPLEPAY";
const GOOGLEPAY = "GOOGLEPAY";
const HASO = "HASO";
const PAYCELL = "PAYCELL";
const ZIP = "ZIP";
const MULTINET = "MULTINET";
}

0 comments on commit 57c3417

Please sign in to comment.