feat(pm_list): add card - credit pm type required field info for connectors (#2075)

This commit is contained in:
Prasunna Soppa
2023-09-01 23:25:23 +05:30
committed by GitHub
parent 99ff82ef6d
commit a882d7604c
3 changed files with 1910 additions and 131 deletions

View File

@ -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

View File

@ -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"
] ]
}, },
{ {