mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat(connector): [Gocardless] add support for Ach, Sepa, Becs payment methods (#2180)
This commit is contained in:
@ -90,7 +90,7 @@ pub enum Connector {
|
||||
Forte,
|
||||
Globalpay,
|
||||
Globepay,
|
||||
//Gocardless,
|
||||
Gocardless,
|
||||
//Helcim, added as template code for future usage,
|
||||
Iatapay,
|
||||
Klarna,
|
||||
@ -207,7 +207,7 @@ pub enum RoutableConnectors {
|
||||
Forte,
|
||||
Globalpay,
|
||||
Globepay,
|
||||
//Gocardless,
|
||||
Gocardless,
|
||||
//Helcim, added as template code for future usage,
|
||||
Iatapay,
|
||||
Klarna,
|
||||
|
||||
@ -753,6 +753,9 @@ pub enum BankDebitData {
|
||||
/// Bank-State-Branch (bsb) number
|
||||
#[schema(value_type = String, example = "000000")]
|
||||
bsb_number: Secret<String>,
|
||||
/// Owner name for bank debit
|
||||
#[schema(value_type = Option<String>, example = "A. Schneider")]
|
||||
bank_account_holder_name: Option<Secret<String>>,
|
||||
},
|
||||
BacsBankDebit {
|
||||
/// Billing details for bank debit
|
||||
|
||||
Reference in New Issue
Block a user