AccountStatementBalance

data class AccountStatementBalance(@Json(name = availableavailable: Float, @Json(name = limitlimit: Float, @Json(name = balancebalance: Float, @Json(name = currencycurrency: CurrencyId?, @Json(name = datedate: LocalDateTime)

Parameters

available

The available amount. This can be null, if the available amount is not known.

limit

The limit of the account. This can be null, if the limit is not known.

balance

The current account balance.

currency

The bank accounts currency code (three-digit, e.g. EUR)

date

The date the balance was seen on.

Constructors

AccountStatementBalance
Link copied to clipboard
fun AccountStatementBalance(@Json(name = availableavailable: Float, @Json(name = limitlimit: Float, @Json(name = balancebalance: Float, @Json(name = currencycurrency: CurrencyId? = null, @Json(name = datedate: LocalDateTime)
The available amount.

Properties

available
Link copied to clipboard
var available: Float
The available amount.
balance
Link copied to clipboard
var balance: Float
The current account balance.
currency
Link copied to clipboard
var currency: CurrencyId? = null
The bank accounts currency code (three-digit, e.g.
date
Link copied to clipboard
var date: LocalDateTime
The date the balance was seen on.
limit
Link copied to clipboard
var limit: Float
The limit of the account.