Class: Figo::AccountBalance
Overview
Object representing the balance of a certain bank account of the User
Instance Attribute Summary collapse
-
#balance ⇒ DecNum
Account balance or ‘nil` if the balance is not yet known.
-
#balance_date ⇒ Date
Bank server timestamp of balance or ‘nil` if the balance is not yet known.
-
#credit_line ⇒ DecNum
Credit line.
-
#monthly_spending_limit ⇒ DecNum
User-defined spending limit.
-
#status ⇒ SynchronizationStatus
Synchronization status object.
Method Summary
Methods inherited from Base
#dump, dump_attributes, #initialize
Constructor Details
This class inherits a constructor from Figo::Base
Instance Attribute Details
#balance ⇒ DecNum
Account balance or ‘nil` if the balance is not yet known
251 252 253 |
# File 'lib/models.rb', line 251 def balance @balance end |
#balance_date ⇒ Date
Bank server timestamp of balance or ‘nil` if the balance is not yet known
255 256 257 |
# File 'lib/models.rb', line 255 def balance_date @balance_date end |
#credit_line ⇒ DecNum
Credit line.
259 260 261 |
# File 'lib/models.rb', line 259 def credit_line @credit_line end |
#monthly_spending_limit ⇒ DecNum
User-defined spending limit
263 264 265 |
# File 'lib/models.rb', line 263 def monthly_spending_limit @monthly_spending_limit end |
#status ⇒ SynchronizationStatus
Synchronization status object
267 268 269 |
# File 'lib/models.rb', line 267 def status @status end |