class Pohoda::Parsers::Lst::ListSellingPriceType

Public Instance Methods

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

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

  hash
  super.merge(hash)
end