Class: Figo::AccountBalance

Inherits:
Base
  • Object
show all
Defined in:
lib/models.rb

Overview

Object representing the balance of a certain bank account of the User

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#dump, dump_attributes, #initialize

Constructor Details

This class inherits a constructor from Figo::Base

Instance Attribute Details

#balanceDecNum

Account balance or ‘nil` if the balance is not yet known

Returns:

  • (DecNum)


251
252
253
# File 'lib/models.rb', line 251

def balance
  @balance
end

#balance_dateDate

Bank server timestamp of balance or ‘nil` if the balance is not yet known

Returns:

  • (Date)


255
256
257
# File 'lib/models.rb', line 255

def balance_date
  @balance_date
end

#credit_lineDecNum

Credit line.

Returns:

  • (DecNum)


259
260
261
# File 'lib/models.rb', line 259

def credit_line
  @credit_line
end

#monthly_spending_limitDecNum

User-defined spending limit

Returns:

  • (DecNum)


263
264
265
# File 'lib/models.rb', line 263

def monthly_spending_limit
  @monthly_spending_limit
end

#statusSynchronizationStatus

Synchronization status object



267
268
269
# File 'lib/models.rb', line 267

def status
  @status
end