Class: Hbci4Jruby::BankingPassport
- Inherits:
-
Object
- Object
- Hbci4Jruby::BankingPassport
- Defined in:
- lib/hbci4jruby/banking_passport.rb
Instance Attribute Summary collapse
-
#account_number ⇒ Object
Returns the value of attribute account_number.
-
#bank_number ⇒ Object
Returns the value of attribute bank_number.
-
#country_code ⇒ Object
Returns the value of attribute country_code.
-
#customer_id ⇒ Object
Returns the value of attribute customer_id.
-
#filter ⇒ Object
Returns the value of attribute filter.
-
#hbci_version ⇒ Object
Returns the value of attribute hbci_version.
-
#host ⇒ Object
Returns the value of attribute host.
-
#pin ⇒ Object
Returns the value of attribute pin.
-
#port ⇒ Object
Returns the value of attribute port.
-
#user_id ⇒ Object
Returns the value of attribute user_id.
Instance Method Summary collapse
Instance Attribute Details
#account_number ⇒ Object
Returns the value of attribute account_number.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def account_number @account_number end |
#bank_number ⇒ Object
Returns the value of attribute bank_number.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def bank_number @bank_number end |
#country_code ⇒ Object
Returns the value of attribute country_code.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def country_code @country_code end |
#customer_id ⇒ Object
Returns the value of attribute customer_id.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def customer_id @customer_id end |
#filter ⇒ Object
Returns the value of attribute filter.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def filter @filter end |
#hbci_version ⇒ Object
Returns the value of attribute hbci_version.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def hbci_version @hbci_version end |
#host ⇒ Object
Returns the value of attribute host.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def host @host end |
#pin ⇒ Object
Returns the value of attribute pin.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def pin @pin end |
#port ⇒ Object
Returns the value of attribute port.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def port @port end |
#user_id ⇒ Object
Returns the value of attribute user_id.
3 4 5 |
# File 'lib/hbci4jruby/banking_passport.rb', line 3 def user_id @user_id end |
Instance Method Details
#attributes=(hash) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/hbci4jruby/banking_passport.rb', line 7 def attributes= hash self.hbci_version = hash['hbci_version'] self.pin = hash['pin'] self.user_id = hash['user_id'] self.customer_id = hash['customer_id'] self.country_code = hash['country_code'] self.port = hash['port'] self.host = hash['host'] self.filter = hash['filter'] self.bank_number = hash['bank_number'] self.account_number = hash['account_number'] end |