From 30fba90469b92c9b1f16377bc06afe77ebfaff94 Mon Sep 17 00:00:00 2001 From: Dinesh Date: Fri, 6 Sep 2024 16:38:52 +0545 Subject: [PATCH] #32695 remove accountType and receiver Document Type --- TPServices/GuavaPayRemit/Services/GuavaPayAPI.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TPServices/GuavaPayRemit/Services/GuavaPayAPI.cs b/TPServices/GuavaPayRemit/Services/GuavaPayAPI.cs index af036b8..62e2e36 100644 --- a/TPServices/GuavaPayRemit/Services/GuavaPayAPI.cs +++ b/TPServices/GuavaPayRemit/Services/GuavaPayAPI.cs @@ -135,7 +135,7 @@ namespace TPApiServices.GuavaPayRemit.Services request.RequestFormat = DataFormat.Json; var txnResponseData = client.Execute(request); var sendTxnResponse = txnResponseData.Data; - // _log.Info($"GUAVAPAYAPI|SENDTRANSACTION|REQUEST URL: {client.BaseUrl}{request.Resource}"); + _log.Info($"GUAVAPAYAPI|SENDTRANSACTION|REQUEST URL: {client.BaseUrl}{request.Resource}"); _log.Info($"GUAVAPAYAPI|SENDTRANSACTION|RESPONSE : {txnResponseData.Content}"); if (sendTxnResponse != null) @@ -211,7 +211,7 @@ namespace TPApiServices.GuavaPayRemit.Services Phone = model.Receiver.RMobile, documentInfo = new DocumentInfo { - DocumentType = model.Receiver.RIdType, + //DocumentType = model.Receiver.RIdType, DocumentNumber = model.Receiver.RIdNo }, accountInfo = new AccountInfo @@ -220,7 +220,7 @@ namespace TPApiServices.GuavaPayRemit.Services BankName = model.Agent.PBankName, //"MeezanBank" BankBranchCode = model.Agent.PAgentName, BankCode = model.Agent.PBranchId, - AccountType = model.Agent.PBankType + //AccountType = model.Agent.PBankType } }, Country = model.Receiver.RNativeCountry,