Class: Hbci4Jruby::BankingPassport

Inherits:
Object
  • Object
show all
Defined in:
lib/hbci4jruby/banking_passport.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#account_numberObject

Returns the value of attribute account_number.



3
4
5
# File 'lib/hbci4jruby/banking_passport.rb', line 3

def 
  @account_number
end

#bank_numberObject

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_codeObject

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_idObject

Returns the value of attribute customer_id.



3
4
5
# File 'lib/hbci4jruby/banking_passport.rb', line 3

def customer_id
  @customer_id
end

#filterObject

Returns the value of attribute filter.



3
4
5
# File 'lib/hbci4jruby/banking_passport.rb', line 3

def filter
  @filter
end

#hbci_versionObject

Returns the value of attribute hbci_version.



3
4
5
# File 'lib/hbci4jruby/banking_passport.rb', line 3

def hbci_version
  @hbci_version
end

#hostObject

Returns the value of attribute host.



3
4
5
# File 'lib/hbci4jruby/banking_passport.rb', line 3

def host
  @host
end

#pinObject

Returns the value of attribute pin.



3
4
5
# File 'lib/hbci4jruby/banking_passport.rb', line 3

def pin
  @pin
end

#portObject

Returns the value of attribute port.



3
4
5
# File 'lib/hbci4jruby/banking_passport.rb', line 3

def port
  @port
end

#user_idObject

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.  = hash['account_number']
end