From 73c03770332edda8568f442235964c4553fa5ed1 Mon Sep 17 00:00:00 2001 From: Chinenye Nmoh Date: Sun, 13 Jul 2025 13:44:27 +0100 Subject: [PATCH] pull changes --- app/api/schemas/disbursement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/schemas/disbursement.py b/app/api/schemas/disbursement.py index 08dcc40..b9948bb 100644 --- a/app/api/schemas/disbursement.py +++ b/app/api/schemas/disbursement.py @@ -2,7 +2,7 @@ from marshmallow import Schema, fields class DisbursementSchema(Schema): transactionId = fields.Str(required=False, allow_none=True) - FbnTransactionId = fields.Str(required=False, allow_none=True) + fbnTransactionId = fields.Str(required=False, allow_none=True) debtId = fields.Str(required=False, allow_none=True) customerId = fields.Str(required=False, allow_none=True) accountId = fields.Str(required=False, allow_none=True)