feat(connector): Stripe revolut pay wallet integration (#8066)

This commit is contained in:
Nithin N
2025-05-27 12:07:44 +05:30
committed by GitHub
parent 2432133a28
commit b3d47b650d
52 changed files with 165 additions and 42 deletions

View File

@ -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()
}

View File

@ -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,
}
}
}