63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"responseCode": {
|
|
"type": "string",
|
|
"example": "00"
|
|
},
|
|
"responseDescr": {
|
|
"type": "string",
|
|
"example": "Collect Status retrieved successfully."
|
|
},
|
|
"fullDescription": {
|
|
"type": "string",
|
|
"example": "Disbursement was verified and collection completed."
|
|
},
|
|
"customerId": {
|
|
"type": "string",
|
|
"example": "CN621868"
|
|
},
|
|
"accountId": {
|
|
"type": "string",
|
|
"example": "2017821799"
|
|
},
|
|
"providedAmount": {
|
|
"type": "number",
|
|
"format": "double",
|
|
"example": 0.0
|
|
},
|
|
"collectedAmount": {
|
|
"type": "number",
|
|
"format": "double",
|
|
"example": 7.50
|
|
},
|
|
"transactionId": {
|
|
"type": "string",
|
|
"example": "T002"
|
|
},
|
|
"transactionType": {
|
|
"type": "string",
|
|
"example": "Disbursement"
|
|
},
|
|
"disburseVerify":{
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"example": "2023-10-01T12:00:00Z",
|
|
"nullable": true
|
|
},
|
|
"verifyResult": {
|
|
"type": "string",
|
|
"example": "Success"
|
|
},
|
|
"verifyDescription": {
|
|
"type": "string",
|
|
"example": "Disbursement was verified and collection completed."
|
|
}
|
|
},
|
|
"required": [
|
|
"providedAmount",
|
|
"collectedAmount"
|
|
],
|
|
"additionalProperties": false
|
|
}
|