This commit is contained in:
Azeez Muibi
2025-04-14 11:42:33 +01:00
parent 89fb91e874
commit 21c8cf6c56
18 changed files with 842 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
from marshmallow import Schema, fields
# Loan Information Schema
class LoanStatusSchema(Schema):
transactionId = fields.Str(required=True)
customerId = fields.Str(required=True)
msisdn = fields.Str(required=False)
channel = fields.Str(required=True)