class Pohoda::Parsers::Lst::ListUserCodePackType

Public Instance Methods

list_user_code() click to toggle source
# File lib/pohoda/parsers/lst/list_user_code_pack_type.rb, line 7
def list_user_code
  array_of_at(Lst::ListUserCodeType, ['lst:listUserCode'])
end
to_h() click to toggle source
Calls superclass method
# File lib/pohoda/parsers/lst/list_user_code_pack_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

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

  hash
  super.merge(hash)
end