BankAccountBalance

data class BankAccountBalance(@Json(name = idid: String, @Json(name = availableavailable: Float?, @Json(name = limitlimit: Float?, @Json(name = balancebalance: Float, @Json(name = currencycurrency: CurrencyId, @Json(name = datedate: OffsetDateTime, @Json(name = created_atcreatedAt: OffsetDateTime)

Parameters

id

Bank Account ID

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.

createdAt

Date of creation

Constructors

BankAccountBalance
Link copied to clipboard
fun BankAccountBalance(@Json(name = idid: String, @Json(name = availableavailable: Float? = null, @Json(name = limitlimit: Float? = null, @Json(name = balancebalance: Float, @Json(name = currencycurrency: CurrencyId, @Json(name = datedate: OffsetDateTime, @Json(name = created_atcreatedAt: OffsetDateTime)
Bank Account ID

Properties

available
Link copied to clipboard
var available: Float? = null
The available amount.
balance
Link copied to clipboard
var balance: Float
The current account balance.
createdAt
Link copied to clipboard
var createdAt: OffsetDateTime
Date of creation
currency
Link copied to clipboard
var currency: CurrencyId
The bank accounts currency code (three-digit, e.g.
date
Link copied to clipboard
var date: OffsetDateTime
The date the balance was seen on.
id
Link copied to clipboard
var id: String
Bank Account ID
limit
Link copied to clipboard
var limit: Float? = null
The limit of the account.