updated loan and repayment endpoint
This commit was merged in pull request #19.
This commit is contained in:
@@ -76,6 +76,17 @@
|
||||
"example": 10500.0,
|
||||
"nullable": true
|
||||
},
|
||||
"balance": {
|
||||
"type": "number",
|
||||
"format": "float",
|
||||
"example": 5000.0,
|
||||
"nullable": true
|
||||
},
|
||||
"reference": {
|
||||
"type": "string",
|
||||
"example": "REF12345",
|
||||
"nullable": true
|
||||
},
|
||||
"installment_amount": {
|
||||
"type": "number",
|
||||
"format": "float",
|
||||
|
||||
@@ -23,6 +23,50 @@
|
||||
"example": "TRX123456",
|
||||
"nullable": true
|
||||
},
|
||||
"initiated_by": {
|
||||
"type": "string",
|
||||
"example": "system",
|
||||
"nullable": true
|
||||
},
|
||||
"salary_amount": {
|
||||
"type": "number",
|
||||
"format": "float",
|
||||
"example": 1000.0,
|
||||
"nullable": true
|
||||
},
|
||||
"repay_date": {
|
||||
"type": "string",
|
||||
"format": "date-time",
|
||||
"example": "2025-04-10T16:45:47.879552Z",
|
||||
"nullable": true
|
||||
},
|
||||
"verify_date": {
|
||||
"type": "string",
|
||||
"format": "date-time",
|
||||
"example": "2025-04-10T16:45:47.879552Z",
|
||||
"nullable": true
|
||||
},
|
||||
"repay_result": {
|
||||
"type": "string",
|
||||
"example": "success",
|
||||
"nullable": true
|
||||
},
|
||||
"repay_description": {
|
||||
"type": "string",
|
||||
"example": "Repayment processed successfully",
|
||||
"nullable": true
|
||||
},
|
||||
"verify_result": {
|
||||
"type": "string",
|
||||
"example": "verified",
|
||||
"nullable": true
|
||||
},
|
||||
"verify_description": {
|
||||
"type": "string",
|
||||
"example": "Verification completed successfully",
|
||||
"nullable": true
|
||||
},
|
||||
|
||||
"created_at": {
|
||||
"type": "string",
|
||||
"format": "date-time",
|
||||
|
||||
Reference in New Issue
Block a user