module MoneyS3 module Parsers class SeznamStredisek include ParserCore::BaseParser def stredisko array_of_at(Stredisko, ['Stredisko']) end def to_h hash = {} hash[:attributes] = attributes hash[:stredisko] = stredisko.map(&:to_h) if has? 'Stredisko' hash end end end end