require 'money_s3/parsers/base_parser' require 'money_s3/parsers/vyrobka' module MoneyS3 module Parsers class SeznamVyrobka include BaseParser def vyrobka array_of_at(Vyrobka, ['Vyrobka']) end def to_h hash = WithAttributes.new({}) hash.attributes = attributes hash[:vyrobka] = vyrobka.map(&:to_h) if has? 'Vyrobka' hash end end end end