Untitled

 avatar
unknown
python
14 days ago
1.0 kB
4
Indexable
class TypeChoices(models.TextChoices):
    CREDIT_CARD = "CREDIT_CARD", _("Credit Card")
    STORE_CARD = "STORE_CARD", _("Store Card")
    LOAN = "LOAN", _("Loan")
    HP = "HP", _("HP")
    OVERDRAFT = "OVERDRAFT", _("Overdraft")
    STUDENT_LOAN = "STUDENT_LOAN", _("Student Loan")
    MAINTENANCE = "MAINTENANCE", _("Maintenance")
    LEASE = "LEASE", _("Lease")
    UNSECURED = "UNSECURED", _("Unsecured")
    MORTGAGE_RENT = "MORTGAGE_RENT", _("Mortgage / Rent")
    PUBLIC_UTILITY = "PUBLIC_UTILITY", _("Public Utility")
    COMMUNICATIONS = "COMMUNICATIONS", _("Communications")
    INSURANCE = "INSURANCE", _("Insurance")
    SECURED = "SECURED", _("Secured")
    PCP = "PCP", _("PCP")
    MAIL_ORDER = "MAIL_ORDER", _("Mail Order")
    CHILDCARE = "CHILDCARE", _("Childcare")
    CAR_FINANCE = "CAR_FINANCE", _("Car Finance")
    BNPL = "BNPL", _("Buy Now Pay Later (BNPL)")
    CREDIT_COMMITMENT = "CREDIT_COMMITMENT", _("Credit Commitment")
    DMP = "DMP", _("DMP")
Editor is loading...
Leave a Comment