Class: BankApi::Configs::BancoSecurity
- Inherits:
-
Object
- Object
- BankApi::Configs::BancoSecurity
- Defined in:
- lib/bank_api/configs/banco_security.rb
Instance Attribute Summary collapse
-
#company_rut ⇒ Object
Returns the value of attribute company_rut.
-
#dynamic_card_entries ⇒ Object
Returns the value of attribute dynamic_card_entries.
-
#page_size ⇒ Object
Returns the value of attribute page_size.
-
#password ⇒ Object
Returns the value of attribute password.
-
#user_rut ⇒ Object
Returns the value of attribute user_rut.
Instance Method Summary collapse
- #dynamic_card ⇒ Object
-
#initialize ⇒ BancoSecurity
constructor
A new instance of BancoSecurity.
Constructor Details
#initialize ⇒ BancoSecurity
Returns a new instance of BancoSecurity.
7 8 9 10 11 12 13 |
# File 'lib/bank_api/configs/banco_security.rb', line 7 def initialize @user_rut = nil @password = nil @company_rut = nil @dynamic_card_entries = nil @page_size = 30 end |
Instance Attribute Details
#company_rut ⇒ Object
Returns the value of attribute company_rut.
5 6 7 |
# File 'lib/bank_api/configs/banco_security.rb', line 5 def company_rut @company_rut end |
#dynamic_card_entries ⇒ Object
Returns the value of attribute dynamic_card_entries.
5 6 7 |
# File 'lib/bank_api/configs/banco_security.rb', line 5 def dynamic_card_entries @dynamic_card_entries end |
#page_size ⇒ Object
Returns the value of attribute page_size.
5 6 7 |
# File 'lib/bank_api/configs/banco_security.rb', line 5 def page_size @page_size end |
#password ⇒ Object
Returns the value of attribute password.
5 6 7 |
# File 'lib/bank_api/configs/banco_security.rb', line 5 def password @password end |
#user_rut ⇒ Object
Returns the value of attribute user_rut.
5 6 7 |
# File 'lib/bank_api/configs/banco_security.rb', line 5 def user_rut @user_rut end |
Instance Method Details
#dynamic_card ⇒ Object
15 16 17 |
# File 'lib/bank_api/configs/banco_security.rb', line 15 def dynamic_card DynamicCard.new(@dynamic_card_entries) unless @dynamic_card_entries.nil? end |