mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
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:
committed by
GitHub
parent
79e1443c00
commit
b4eceae3a7
@ -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",
|
||||
|
||||
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user