[update]: transaction logging and account ownership

This commit is contained in:
VivianDee
2025-03-31 14:50:22 +01:00
parent 6185c2df08
commit d9c99627ae
10 changed files with 203 additions and 79 deletions
+1 -1
View File
@@ -1 +1 @@
from .transaction_type import transaction_type
from .transaction_type import TransactionType
+6 -2
View File
@@ -1,6 +1,10 @@
from enum import Enum
class transaction_type(str, Enum):
class TransactionType(str, Enum):
ELIGIBILITY_CHECK = "eligibility_check"
PAYMENT = "payment"
CUSTOMER_CONSENT = "customer_consent"
LOAN_STATUS = "loan_status"
NOTIFICATION_CALLBACK = "notification_callback"
PROVIDE_LOAN = "provide_loan"
REPAYMENT = "repayment"
SELECT_OFFER = "select_offer"