fix(connector): [NOVALNET] Add Sepa Direct Debit Required Fields (#9967)

Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local>
This commit is contained in:
Sayak Bhattacharya
2025-10-24 13:32:49 +05:30
committed by GitHub
parent 38725599d9
commit 910887d35c

View File

@ -3421,6 +3421,26 @@ fn get_bank_debit_required_fields() -> HashMap<enums::PaymentMethodType, Connect
]),
},
),
(
Connector::Novalnet,
RequiredFieldFinal {
mandate: HashMap::new(),
non_mandate: HashMap::new(),
common: HashMap::from([
RequiredField::BillingFirstName(
"billing_first_name",
FieldType::UserBillingName,
)
.to_tuple(),
RequiredField::BillingLastName(
"owner_name",
FieldType::UserBillingName,
)
.to_tuple(),
RequiredField::SepaBankDebitIban.to_tuple(),
]),
},
),
]),
),
(