Changed order

This commit is contained in:
dankito 2024-09-18 02:13:00 +02:00
parent 40ad61ebab
commit ac3bc57875
1 changed files with 4 additions and 4 deletions

View File

@ -52,14 +52,14 @@ open class BankAccount(
(this.holdings as MutableList<Holding>).addAll(holdings) (this.holdings as MutableList<Holding>).addAll(holdings)
} }
@get:JsonIgnore
open val supportsTransactionRetrieval: Boolean
get() = supportsAnyFeature(BankAccountFeatures.RetrieveTransactions)
@get:JsonIgnore @get:JsonIgnore
open val supportsBalanceRetrieval: Boolean open val supportsBalanceRetrieval: Boolean
get() = supportsAnyFeature(BankAccountFeatures.RetrieveBalance) get() = supportsAnyFeature(BankAccountFeatures.RetrieveBalance)
@get:JsonIgnore
open val supportsTransactionRetrieval: Boolean
get() = supportsAnyFeature(BankAccountFeatures.RetrieveTransactions)
@get:JsonIgnore @get:JsonIgnore
open val supportsMoneyTransfer: Boolean open val supportsMoneyTransfer: Boolean
get() = supportsAnyFeature(BankAccountFeatures.TransferMoney) get() = supportsAnyFeature(BankAccountFeatures.TransferMoney)