diff --git a/app/api/schemas/disbursement.py b/app/api/schemas/disbursement.py index c1e95da..d505df7 100644 --- a/app/api/schemas/disbursement.py +++ b/app/api/schemas/disbursement.py @@ -1,7 +1,6 @@ from marshmallow import Schema, fields class DisbursementSchema(Schema): - requestId = fields.Str(required=False, allow_none=True) transactionId = fields.Str(required=False, allow_none=True) FbnTransactionId = fields.Str(required=False, allow_none=True) debtId = fields.Str(required=False, allow_none=True)