class Pohoda::Parsers::Lst::ListStoreType

Public Instance Methods

store() click to toggle source
# File lib/pohoda/parsers/lst/list_store_type.rb, line 7
def store
  array_of_at(Sto::StoreType, ['lst:store'])
end
to_h() click to toggle source
Calls superclass method
# File lib/pohoda/parsers/lst/list_store_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

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

  hash
  super.merge(hash)
end