mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat(pm_list): add required fields for sofort (#3192)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Prasunna Soppa <70575890+prasunna09@users.noreply.github.com>
This commit is contained in:
@ -1336,15 +1336,15 @@ pub enum BankRedirectData {
|
||||
},
|
||||
Sofort {
|
||||
/// The billing details for bank redirection
|
||||
billing_details: BankRedirectBilling,
|
||||
billing_details: Option<BankRedirectBilling>,
|
||||
|
||||
/// The country for bank payment
|
||||
#[schema(value_type = CountryAlpha2, example = "US")]
|
||||
country: api_enums::CountryAlpha2,
|
||||
country: Option<api_enums::CountryAlpha2>,
|
||||
|
||||
/// The preferred language
|
||||
#[schema(example = "en")]
|
||||
preferred_language: String,
|
||||
preferred_language: Option<String>,
|
||||
},
|
||||
Trustly {
|
||||
/// The country for bank payment
|
||||
|
||||
Reference in New Issue
Block a user