Class: LunchMoney::Objects::PlaidAccount
- Defined in:
- lib/lunchmoney/objects/plaid_account.rb
Overview
Instance Attribute Summary collapse
- #balance ⇒ String
- #balance_last_update ⇒ String
- #currency ⇒ String
- #date_linked ⇒ String
- #display_name ⇒ String
- #id ⇒ Integer
- #import_start_date ⇒ String?
- #institution_name ⇒ String
- #last_fetch ⇒ String?
- #last_import ⇒ String?
- #limit ⇒ Integer?
- #mask ⇒ String
- #name ⇒ String
- #plaid_last_successful_update ⇒ String
- #status ⇒ String
- #subtype ⇒ String?
- #type ⇒ String
Instance Method Summary collapse
Methods inherited from Object
Constructor Details
#initialize(date_linked:, name:, type:, mask:, institution_name:, status:, balance:, currency:, balance_last_update:, display_name:, id:, plaid_last_successful_update:, last_import: nil, limit: nil, subtype: nil, import_start_date: nil, last_fetch: nil) ⇒ void
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 51 def initialize(date_linked:, name:, type:, mask:, institution_name:, status:, balance:, currency:, balance_last_update:, display_name:, id:, plaid_last_successful_update:, last_import: nil, limit: nil, subtype: nil, import_start_date: nil, last_fetch: nil) super() @id = id @date_linked = date_linked @name = name @display_name = display_name @type = type @subtype = subtype @mask = mask @institution_name = institution_name @status = status @limit = limit @balance = balance @currency = currency @balance_last_update = balance_last_update @import_start_date = import_start_date @last_import = last_import @last_fetch = last_fetch @plaid_last_successful_update = plaid_last_successful_update end |
Instance Attribute Details
#balance ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def balance @balance end |
#balance_last_update ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def balance_last_update @balance_last_update end |
#currency ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def currency @currency end |
#date_linked ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def date_linked @date_linked end |
#display_name ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def display_name @display_name end |
#id ⇒ Integer
9 10 11 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 9 def id @id end |
#import_start_date ⇒ String?
25 26 27 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 25 def import_start_date @import_start_date end |
#institution_name ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def institution_name @institution_name end |
#last_fetch ⇒ String?
25 26 27 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 25 def last_fetch @last_fetch end |
#last_import ⇒ String?
25 26 27 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 25 def last_import @last_import end |
#limit ⇒ Integer?
28 29 30 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 28 def limit @limit end |
#mask ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def mask @mask end |
#name ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def name @name end |
#plaid_last_successful_update ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def plaid_last_successful_update @plaid_last_successful_update end |
#status ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def status @status end |
#subtype ⇒ String?
25 26 27 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 25 def subtype @subtype end |
#type ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/plaid_account.rb', line 12 def type @type end |