Class: Figo::Bank
Overview
Object representing a bank, i.e. an connection to a bank
Instance Attribute Summary collapse
-
#bank_id ⇒ String
Internal figo Connect bank ID.
-
#save_pin ⇒ Boolean
This flag indicates whether the user has chosen to save the PIN on the figo Connect server.
-
#sepa_creditor_id ⇒ String
SEPA direct debit creditor ID.
Instance Method Summary collapse
-
#initialize(session, json) ⇒ Bank
constructor
A new instance of Bank.
Methods inherited from Base
Constructor Details
#initialize(session, json) ⇒ Bank
Returns a new instance of Bank.
7 8 9 |
# File 'lib/bank/model.rb', line 7 def initialize(session, json) super(session, json) end |
Instance Attribute Details
#bank_id ⇒ String
Internal figo Connect bank ID
13 14 15 |
# File 'lib/bank/model.rb', line 13 def bank_id @bank_id end |
#save_pin ⇒ Boolean
This flag indicates whether the user has chosen to save the PIN on the figo Connect server
21 22 23 |
# File 'lib/bank/model.rb', line 21 def save_pin @save_pin end |
#sepa_creditor_id ⇒ String
SEPA direct debit creditor ID
17 18 19 |
# File 'lib/bank/model.rb', line 17 def sepa_creditor_id @sepa_creditor_id end |