Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds multinet as APM #122

Merged
merged 2 commits into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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";
}
Loading