feat(connector): [NOVALNET] Implemented Sepa Direct Debit and Sepa Direct Debit with Payment Guarantee (#9700)

Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Sayak Bhattacharya
2025-10-16 17:30:24 +05:30
committed by GitHub
parent 79e1443c00
commit b4eceae3a7
38 changed files with 385 additions and 61 deletions

View File

@ -2072,6 +2072,7 @@ pub enum PaymentMethodType {
SamsungPay,
Sepa,
SepaBankTransfer,
SepaGuarenteedDebit,
Skrill,
Sofort,
Swish,
@ -2198,6 +2199,7 @@ impl PaymentMethodType {
Self::RedPagos => "RedPagos",
Self::SamsungPay => "Samsung Pay",
Self::Sepa => "SEPA Direct Debit",
Self::SepaGuarenteedDebit => "SEPA Guarenteed Direct Debit",
Self::SepaBankTransfer => "SEPA Bank Transfer",
Self::Sofort => "Sofort",
Self::Skrill => "Skrill",

View File

@ -1872,6 +1872,7 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::PromptPay => Self::RealTimePayment,
PaymentMethodType::SamsungPay => Self::Wallet,
PaymentMethodType::Sepa => Self::BankDebit,
PaymentMethodType::SepaGuarenteedDebit => Self::BankDebit,
PaymentMethodType::SepaBankTransfer => Self::BankTransfer,
PaymentMethodType::Sofort => Self::BankRedirect,
PaymentMethodType::Swish => Self::BankRedirect,