feat(connector): [Adyen] implement Online Banking Fpx for Adyen (#1584)

Co-authored-by: Sangamesh Kulkarni <59434228+Sangamesh26@users.noreply.github.com>
This commit is contained in:
AkshayaFoiger
2023-07-20 16:56:50 +05:30
committed by GitHub
parent c4c94241a9
commit 2e492ee6a9
12 changed files with 191 additions and 1 deletions

View File

@ -855,6 +855,11 @@ pub enum BankRedirectData {
#[schema(value_type = CountryAlpha2, example = "US")]
country: api_enums::CountryAlpha2,
},
OnlineBankingFpx {
// Issuer banks
#[schema(value_type = BankNames)]
issuer: api_enums::BankNames,
},
}
#[derive(Debug, Clone, Eq, PartialEq, serde::Deserialize, serde::Serialize, ToSchema)]