Added remitterAddress, beneficiaryName, beneficiaryAddress, senderAcctType, beneficiaryAcctType, beneficiaryBankName, beneficiaryBranchName, commissionAmount to transactions as told by C-Edge. Also removed errorMsg from TransactionFailureResponse class. Refactored code for more readability. Removed application logs from STDOUT.

This commit is contained in:
2024-10-24 12:39:07 +05:30
parent df7d0e8006
commit 6c5dab0a17
12 changed files with 100 additions and 51 deletions

View File

@@ -1,12 +1,12 @@
package response
package net.ipksindia.response
import kotlinx.serialization.Serializable
import response.TransactionResponse
@Serializable
data class TransactionFailureResponse(
override val status: String,
override val message: String,
val errorMsg: String,
override val error: Int
): TransactionResponse