Skip to content

Commit

Permalink
INT-4765: POG, Manual, Add currency + methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatolii Kyiashenko committed Jun 27, 2024
1 parent 4060a3a commit cf53ad8
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
20 changes: 20 additions & 0 deletions data/payout_methods.json
Original file line number Diff line number Diff line change
Expand Up @@ -30948,5 +30948,25 @@
"uk": "Community Bank",
"ru": "Community Bank"
}
},
{
"status":"active",
"code":"etisalat_cash",
"category":"digital_wallet",
"name":{
"en":"Etisalat Cash",
"ru":"Etisalat Cash",
"uk":"Etisalat Cash"
}
},
{
"status":"active",
"code":"cib_smart_wallet",
"category":"digital_wallet",
"name":{
"en":"CIB Smart Wallet",
"ru":"CIB Smart Wallet",
"uk":"CIB Smart Wallet"
}
}
]
79 changes: 79 additions & 0 deletions data/payout_services.json
Original file line number Diff line number Diff line change
Expand Up @@ -136920,6 +136920,69 @@
],
"amount_min": 0.01,
"amount_max": 1200000
},
{
"status": "active",
"code": "vodafone_cash_egp",
"method": "vodafone_cash",
"currency": "EGP",
"fields": [
{
"key": "account_number",
"type": "string",
"label": {
"en": "Account number",
"ru": "Номер счета",
"uk": "Номер рахунку"
},
"hint": {
"en": "Enter account number",
"ru": "Введите номер счета",
"uk": "Введіть номер рахунку"
},
"regexp": "\/^.{1,50}$\/",
"required": true,
"position": 1
},
{
"key": "beneficiary_first_name",
"type": "string",
"label": {
"en": "Beneficiary first name",
"ru": "Имя получателя",
"uk": "Імʼя отримувача"
},
"hint": {
"en": "Enter beneficiary first name",
"ru": "Введите имя получателя",
"uk": "Введіть імʼя отримувача"
},
"regexp": "/^[A-Z\\-\\ a-z]{2,100}$/",
"required": false,
"position": 2,
"example": "Jonh"
},
{
"key": "beneficiary_last_name",
"type": "string",
"label": {
"en": "Beneficiary last name",
"ru": "Фамилия получателя",
"uk": "Прізвище отримувача"
},
"hint": {
"en": "Enter beneficiary last name",
"ru": "Введите фамилию получателя",
"uk": "Введіть прізвище отримувача"
},
"regexp": "/^[A-Z\\-\\ a-z]{2,100}$/",
"required": false,
"position": 3,
"example": "Doe"
}
],
"amount_min": 0.01,
"amount_max": 3000000
},
{
"status": "active",
Expand Down Expand Up @@ -146003,5 +146066,21 @@
],
"amount_min": "0.01",
"amount_max": "100000"
},
{
"status": "active",
"code": "cib_smart_wallet_egp",
"method": "cib_smart_wallet",
"currency": "EGP",
"amount_min": 0.01,
"amount_max": 3000000
},
{
"status": "active",
"code": "etisalat_cash_egp",
"method": "etisalat_cash",
"currency": "EGP",
"amount_min": 0.01,
"amount_max": 3000000
}
]

0 comments on commit cf53ad8

Please sign in to comment.