5 lines
124 B
Python
5 lines
124 B
Python
from enum import Enum
|
|
|
|
class RepaymentScheduleStatus(str, Enum):
|
|
PARTIALLY_PAID = "partially_paid"
|
|
REPAID = "repaid" |