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)