mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
refactor(connector): [Adyen] Change country and issuer type to Optional for OpenBankingUk (#2993)
Co-authored-by: Arjun Karthik <m.arjunkarthik@gmail.com> Co-authored-by: Prasunna Soppa <70575890+prasunna09@users.noreply.github.com>
This commit is contained in:
@ -1204,10 +1204,10 @@ pub enum BankRedirectData {
|
||||
OpenBankingUk {
|
||||
// Issuer banks
|
||||
#[schema(value_type = BankNames)]
|
||||
issuer: api_enums::BankNames,
|
||||
issuer: Option<api_enums::BankNames>,
|
||||
/// The country for bank payment
|
||||
#[schema(value_type = CountryAlpha2, example = "US")]
|
||||
country: api_enums::CountryAlpha2,
|
||||
country: Option<api_enums::CountryAlpha2>,
|
||||
},
|
||||
Przelewy24 {
|
||||
//Issuer banks
|
||||
|
||||
Reference in New Issue
Block a user