feat(connector): [Adyen] implement Oxxo (#1808)

Co-authored-by: Sk Sakil Mostak <skmahim71@gmail.com>
Co-authored-by: Pa1NarK <69745008+pixincreate@users.noreply.github.com>
This commit is contained in:
AkshayaFoiger
2023-08-04 01:45:38 +05:30
committed by GitHub
parent f2fcc2595a
commit 5ed3f34c24
14 changed files with 33 additions and 3 deletions

View File

@ -917,6 +917,7 @@ pub enum PaymentMethodType {
OnlineBankingFpx,
OnlineBankingPoland,
OnlineBankingSlovakia,
Oxxo,
PagoEfectivo,
PermataBankTransfer,
PayBright,

View File

@ -1606,6 +1606,7 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::RedPagos => Self::Voucher,
PaymentMethodType::Cashapp => Self::Wallet,
PaymentMethodType::Givex => Self::GiftCard,
PaymentMethodType::Oxxo => Self::Voucher,
}
}
}