This commit is contained in:
Samuel Tariku 2025-04-14 19:50:08 +03:00
parent ff393858d9
commit 44b2385565
3 changed files with 11 additions and 3 deletions

View File

@ -3352,7 +3352,6 @@ const docTemplate = `{
"example": 100 "example": 100
}, },
"bank_code": { "bank_code": {
"description": "Payment Details for bank",
"type": "string" "type": "string"
}, },
"beneficiary_name": { "beneficiary_name": {
@ -3362,6 +3361,10 @@ const docTemplate = `{
"type": "integer", "type": "integer",
"example": 1 "example": 1
}, },
"cashout_id": {
"type": "string",
"example": "191212"
},
"full_name": { "full_name": {
"type": "string", "type": "string",
"example": "John Smith" "example": "John Smith"

View File

@ -3344,7 +3344,6 @@
"example": 100 "example": 100
}, },
"bank_code": { "bank_code": {
"description": "Payment Details for bank",
"type": "string" "type": "string"
}, },
"beneficiary_name": { "beneficiary_name": {
@ -3354,6 +3353,10 @@
"type": "integer", "type": "integer",
"example": 1 "example": 1
}, },
"cashout_id": {
"type": "string",
"example": "191212"
},
"full_name": { "full_name": {
"type": "string", "type": "string",
"example": "John Smith" "example": "John Smith"

View File

@ -518,13 +518,15 @@ definitions:
example: 100 example: 100
type: number type: number
bank_code: bank_code:
description: Payment Details for bank
type: string type: string
beneficiary_name: beneficiary_name:
type: string type: string
bet_id: bet_id:
example: 1 example: 1
type: integer type: integer
cashout_id:
example: "191212"
type: string
full_name: full_name:
example: John Smith example: John Smith
type: string type: string