mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 11:06:50 +08:00
feat(connector): Stripe revolut pay wallet integration (#8066)
This commit is contained in:
@ -1922,6 +1922,7 @@ pub enum PaymentMethodType {
|
||||
OpenBankingPIS,
|
||||
DirectCarrierBilling,
|
||||
InstantBankTransfer,
|
||||
RevolutPay,
|
||||
}
|
||||
|
||||
impl PaymentMethodType {
|
||||
@ -2034,6 +2035,7 @@ impl PaymentMethodType {
|
||||
Self::Mifinity => "MiFinity",
|
||||
Self::OpenBankingPIS => "Open Banking PIS",
|
||||
Self::DirectCarrierBilling => "Direct Carrier Billing",
|
||||
Self::RevolutPay => "RevolutPay",
|
||||
};
|
||||
display_name.to_string()
|
||||
}
|
||||
|
||||
@ -1894,6 +1894,7 @@ impl From<PaymentMethodType> for PaymentMethod {
|
||||
PaymentMethodType::PayEasy => Self::Voucher,
|
||||
PaymentMethodType::OpenBankingPIS => Self::OpenBanking,
|
||||
PaymentMethodType::DirectCarrierBilling => Self::MobilePayment,
|
||||
PaymentMethodType::RevolutPay => Self::Wallet,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user