mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 11:06:50 +08:00
feat(pm_list): add card - credit pm type required field info for connectors (#2075)
This commit is contained in:
@ -510,10 +510,10 @@ pub struct UnresolvedResponseReason {
|
|||||||
#[serde(rename_all = "snake_case")]
|
#[serde(rename_all = "snake_case")]
|
||||||
#[strum(serialize_all = "snake_case")]
|
#[strum(serialize_all = "snake_case")]
|
||||||
pub enum FieldType {
|
pub enum FieldType {
|
||||||
CardNumber,
|
UserCardNumber,
|
||||||
CardExpiryMonth,
|
UserCardExpiryMonth,
|
||||||
CardExpiryYear,
|
UserCardExpiryYear,
|
||||||
CardCVC,
|
UserCardCvc,
|
||||||
UserFullName,
|
UserFullName,
|
||||||
UserEmailAddress,
|
UserEmailAddress,
|
||||||
UserPhoneNumber,
|
UserPhoneNumber,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -5012,25 +5012,25 @@
|
|||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"card_number"
|
"user_card_number"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"card_expiry_month"
|
"user_card_expiry_month"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"card_expiry_year"
|
"user_card_expiry_year"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"card_c_v_c"
|
"user_card_cvc"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user