feat(connector): [Adyen] implement Gopay for Adyen (#1557)

Co-authored-by: Sangamesh Kulkarni <59434228+Sangamesh26@users.noreply.github.com>
This commit is contained in:
AkshayaFoiger
2023-07-17 18:07:32 +05:30
committed by GitHub
parent 94a5eb3533
commit de2d9bd059
10 changed files with 113 additions and 14 deletions

View File

@ -570,6 +570,7 @@ pub enum PaymentMethodType {
Evoucher,
Giropay,
GooglePay,
GoPay,
Ideal,
Interac,
Klarna,

View File

@ -1554,6 +1554,7 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::Evoucher => Self::Reward,
PaymentMethodType::Giropay => Self::BankRedirect,
PaymentMethodType::GooglePay => Self::Wallet,
PaymentMethodType::GoPay => Self::Wallet,
PaymentMethodType::Ideal => Self::BankRedirect,
PaymentMethodType::Klarna => Self::PayLater,
PaymentMethodType::MbWay => Self::Wallet,