class Pohoda::Parsers::Lst::ListBankAccountType

Public Instance Methods

bank_account() click to toggle source
# File lib/pohoda/parsers/lst/list_bank_account_type.rb, line 7
def bank_account
  array_of_at(Bka::BankAccountType, ['lst:bankAccount'])
end
to_h() click to toggle source
Calls superclass method
# File lib/pohoda/parsers/lst/list_bank_account_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:bank_account] = bank_account.map(&:to_h) if has? 'lst:bankAccount'

  hash
  super.merge(hash)
end