feat(connector): [MIFINITY] Implement payment flows and Mifinity payment method (#4592)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: kiran.kummari <kiran.kummari@juspay.in>
This commit is contained in:
Swangi Kumari
2024-06-06 17:47:45 +05:30
committed by GitHub
parent 3d9ecd0938
commit 6750be5aee
58 changed files with 766 additions and 383 deletions

View File

@ -100,7 +100,7 @@ pub enum Connector {
Helcim,
Iatapay,
Klarna,
// Mifinity, Added as template code for future usage
Mifinity,
Mollie,
Multisafepay,
Netcetera,
@ -216,7 +216,7 @@ impl Connector {
| Self::Helcim
| Self::Iatapay
| Self::Klarna
// | Self::Mifinity Added as template code for future usage
| Self::Mifinity
| Self::Mollie
| Self::Multisafepay
| Self::Nexinets
@ -248,7 +248,7 @@ impl Connector {
| Self::Netcetera
| Self::Noon
| Self::Stripe => false,
Self::Checkout | Self::Nmi| Self::Cybersource => true,
Self::Checkout | Self::Nmi | Self::Cybersource => true,
}
}
pub fn is_pre_processing_required_before_authorize(&self) -> bool {