Changed order
This commit is contained in:
parent
40ad61ebab
commit
ac3bc57875
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue