From 61fda080d5a2d1b6ee90556795ac555df61ba1f2 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Wed, 4 Jun 2025 19:52:41 -0400 Subject: [PATCH] remove request id --- app/api/schemas/disbursement.py | 1 - 1 file changed, 1 deletion(-) 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)