Files
digifi-BankEmulator/app/swagger/schemas/eco/CollectLoanRequest.json
T
2025-07-30 05:16:47 +01:00

14 lines
430 B
JSON

{
"type": "object",
"required": ["requestId", "affiliateCode", "debtId", "principal", "interest", "penalty", "collectAmount"],
"properties": {
"requestId": { "type": "string" },
"affiliateCode": { "type": "string" },
"debtId": { "type": "integer" },
"principal": { "type": "number" },
"interest": { "type": "number" },
"penalty": { "type": "number" },
"collectAmount": { "type": "number" }
}
}