mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat: Filter payment methods based on payment (#331)
This commit is contained in:
@ -71,7 +71,7 @@ pub struct ListPaymentMethodRequest {
|
||||
pub client_secret: Option<String>,
|
||||
pub accepted_countries: Option<Vec<String>>,
|
||||
pub accepted_currencies: Option<Vec<api_enums::Currency>>,
|
||||
pub amount: Option<i32>,
|
||||
pub amount: Option<i64>,
|
||||
pub recurring_enabled: Option<bool>,
|
||||
pub installment_payment_enabled: Option<bool>,
|
||||
}
|
||||
@ -174,8 +174,8 @@ pub struct ListPaymentMethodResponse {
|
||||
pub payment_schemes: Option<Vec<String>>,
|
||||
pub accepted_countries: Option<Vec<String>>,
|
||||
pub accepted_currencies: Option<Vec<api_enums::Currency>>,
|
||||
pub minimum_amount: Option<i32>,
|
||||
pub maximum_amount: Option<i32>,
|
||||
pub minimum_amount: Option<i64>,
|
||||
pub maximum_amount: Option<i64>,
|
||||
pub recurring_enabled: bool,
|
||||
pub installment_payment_enabled: bool,
|
||||
pub payment_experience: Option<Vec<PaymentExperience>>,
|
||||
|
||||
Reference in New Issue
Block a user