Skip to main content

TransactionSummaryDto

Summary of the transaction including debit amounts, credit amounts, and final balances.

debitAmountsnumber[]

List of debit amounts involved in the transaction

Example: [100.5,200.75]
creditAmountsnumber[]

List of credit amounts involved in the transaction

Example: [150,250]
finalBalancesnumber[]

List of final balances after the transaction

Example: [350.5,450.75]
TransactionSummaryDto
{
"debitAmounts": [
100.5,
200.75
],
"creditAmounts": [
150,
250
],
"finalBalances": [
350.5,
450.75
]
}