Files
digifi-EventManager/app/enums/repayment_schedule_status.py
2026-03-17 09:37:08 +01:00

7 lines
176 B
Python

from enum import Enum
class RepaymentScheduleStatus(str, Enum):
PARTIALLY_PAID = "partially_paid"
REPAID = "repaid"
ACTIVE = "active"
OVERDUE = "overdue"