feat(connector): [Adyen] implement Touch n Go for Adyen (#1588)

Co-authored-by: Sangamesh Kulkarni <59434228+Sangamesh26@users.noreply.github.com>
Co-authored-by: Arjun Karthik <m.arjunkarthik@gmail.com>
This commit is contained in:
AkshayaFoiger
2023-07-20 23:59:22 +05:30
committed by GitHub
parent 0589c572c4
commit 8e45e734c8
11 changed files with 64 additions and 8 deletions

View File

@ -597,6 +597,7 @@ pub enum PaymentMethodType {
Sepa,
Sofort,
Swish,
TouchNGo,
Trustly,
Twint,
UpiCollect,

View File

@ -1585,6 +1585,7 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::Vipps => Self::Wallet,
PaymentMethodType::Walley => Self::PayLater,
PaymentMethodType::WeChatPay => Self::Wallet,
PaymentMethodType::TouchNGo => Self::Wallet,
}
}
}