added throttling and batch size to processing overdue loans

This commit was merged in pull request #62.
This commit is contained in:
Chinenye Nmoh
2026-01-20 14:03:39 +01:00
parent 46b3c856b1
commit f048dd99ba
4 changed files with 39 additions and 6 deletions
+3 -1
View File
@@ -2,4 +2,6 @@ from enum import Enum
class RepaymentScheduleStatus(str, Enum):
PARTIALLY_PAID = "partially_paid"
REPAID = "repaid"
REPAID = "repaid"
ACTIVE = "active"
OVERDUE = "overdue"