5 lines
142 B
Python
5 lines
142 B
Python
from marshmallow import Schema, fields
|
|
|
|
# Loan Information Schema
|
|
class LoanInformationSchema(Schema):
|
|
loan_id = fields.Str(required=True) |