class Pohoda::Parsers::Lst::ListInventoryListsType

Public Instance Methods

inventory_lists() click to toggle source
# File lib/pohoda/parsers/lst/list_inventory_lists_type.rb, line 7
def inventory_lists
  array_of_at(Ilt::InventoryListsType, ['lst:inventoryLists'])
end
to_h() click to toggle source
Calls superclass method
# File lib/pohoda/parsers/lst/list_inventory_lists_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

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

  hash
  super.merge(hash)
end