BalanceHistoryDto
DTO representing the balance history, including balance amounts, credit and debit details, and related dates.
balancesnumber[]
List of balance amounts for each corresponding date in the history
Example:
[1000,1200.5,1300.75]
datesstring[]
List of dates associated with each balance record
Example:
["2024-01-01","2024-02-01","2024-03-01"]
creditsnumber[]
List of credit amounts recorded for each date
Example:
[200,150.5,300.75]
debitsnumber[]
List of debit amounts recorded for each date
Example:
[50,40.25,80]
currencystring
Currency of the balance amounts
Example:
TND
BalanceHistoryDto
{
"balances": [
1000,
1200.5,
1300.75
],
"dates": [
"2024-01-01",
"2024-02-01",
"2024-03-01"
],
"credits": [
200,
150.5,
300.75
],
"debits": [
50,
40.25,
80
],
"currency": "TND"
}