module MoneyS3 module Parsers class SeznamKurzListku include ParserCore::BaseParser def kurz_listek array_of_at(KurzListek, ['KurzListek']) end def to_h_with_attrs hash = ParserCore::HashWithAttributes.new({}, attributes) hash[:kurz_listek] = kurz_listek.map(&:to_h_with_attrs) if has? 'KurzListek' hash end end end end