This commit is contained in:
Azeez Muibi
2025-04-28 08:40:14 +01:00
parent 0052340843
commit 75e9a96ba3
11 changed files with 529 additions and 44 deletions
+31 -2
View File
@@ -18,6 +18,16 @@
"type": "string",
"example": "ACC456"
},
"transaction_id": {
"type": "string",
"example": "TRX789",
"nullable": true
},
"original_transaction": {
"type": "string",
"example": "ORIG123",
"nullable": true
},
"offer_id": {
"type": "string",
"example": "OFFER789"
@@ -50,10 +60,29 @@
"format": "float",
"example": 50.0
},
"upfront_fee": {
"type": "number",
"format": "float",
"example": 100.0,
"nullable": true
},
"repayment_amount": {
"type": "number",
"format": "float",
"example": 10500.0,
"nullable": true
},
"installment_amount": {
"type": "number",
"format": "float",
"example": 3500.0,
"nullable": true
},
"due_date": {
"type": "string",
"format": "date-time",
"example": "2023-12-31T23:59:59Z"
"example": "2023-12-31T23:59:59Z",
"nullable": true
},
"created_at": {
"type": "string",
@@ -105,4 +134,4 @@
"xml": {
"name": "LoansResponse"
}
}
}