class Pohoda::Parsers::Ilt::InventoryListsDetailType

Public Instance Methods

inventory_lists_item() click to toggle source
# File lib/pohoda/parsers/ilt/inventory_lists_detail_type.rb, line 7
def inventory_lists_item
  array_of_at(Ilt::InventoryListsItemType, ['ilt:inventoryListsItem'])
end
to_h() click to toggle source
# File lib/pohoda/parsers/ilt/inventory_lists_detail_type.rb, line 11
def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:inventory_lists_item] = inventory_lists_item.map(&:to_h) if has? 'ilt:inventoryListsItem'

  hash
end