From 3fb48a08b0f4504f66875bd86fca78e47857736c Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sun, 2 Nov 2025 16:34:54 -0500 Subject: [PATCH] responseMessage --- app/api/schemas/transaction_verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/schemas/transaction_verify.py b/app/api/schemas/transaction_verify.py index 546dab0..dd80823 100644 --- a/app/api/schemas/transaction_verify.py +++ b/app/api/schemas/transaction_verify.py @@ -21,7 +21,7 @@ class TransactionVerifySchema(Schema): class TransactionVerifyResponseSchema(Schema): responseCode = fields.Str(allow_none=True) responseDescr = fields.Str(allow_none=True) - fullDescription = fields.Str(allow_none=True) + responseMessage = fields.Str(allow_none=True) customerId = fields.Str(allow_none=True) accountId = fields.Str(allow_none=True) providedAmount = fields.Float(required=True)