mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
feat(pm_list): add card pm required field info for connectors (#1918)
This commit is contained in:
@ -508,20 +508,25 @@ pub struct UnresolvedResponseReason {
|
||||
#[serde(rename_all = "snake_case")]
|
||||
#[strum(serialize_all = "snake_case")]
|
||||
pub enum FieldType {
|
||||
CardNumber,
|
||||
CardExpiryMonth,
|
||||
CardExpiryYear,
|
||||
CardCVC,
|
||||
UserFullName,
|
||||
UserEmailAddress,
|
||||
UserPhoneNumber,
|
||||
UserCountry { options: Vec<String> },
|
||||
UserCountryCode, //phone number's country code
|
||||
UserCountry { options: Vec<String> }, //for country inside payment method data ex- bank redirect
|
||||
UserCurrency { options: Vec<String> },
|
||||
UserBillingName,
|
||||
UserAddressline1,
|
||||
UserAddressline2,
|
||||
UserAddressCity,
|
||||
UserAddressPincode,
|
||||
UserAddressState,
|
||||
UserAddressCountry,
|
||||
UserAddressCountry { options: Vec<String> },
|
||||
UserBlikCode,
|
||||
UserBillingName,
|
||||
UserBank,
|
||||
UserCurrency { options: Vec<String> },
|
||||
Text,
|
||||
DropDown { options: Vec<String> },
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user