Sha256: 77b272a62049e8ae64dd07b33b585e8b110a22116a09adeeeba2e221743f7c1d
Contents?: true
Size: 917 Bytes
Versions: 7
Compression:
Stored size: 917 Bytes
Contents
module MoneyS3 module Parsers class TypZasilkyType include ParserCore::BaseParser def zkrat at 'Zkrat' end def zkrat_attributes attributes_at 'Zkrat' end def popis at 'Popis' end def popis_attributes attributes_at 'Popis' end def poznamka at 'Poznamka' end def poznamka_attributes attributes_at 'Poznamka' end def to_h hash = {} hash[:attributes] = attributes hash[:zkrat] = zkrat if has? 'Zkrat' hash[:zkrat_attributes] = zkrat_attributes if has? 'Zkrat' hash[:popis] = popis if has? 'Popis' hash[:popis_attributes] = popis_attributes if has? 'Popis' hash[:poznamka] = poznamka if has? 'Poznamka' hash[:poznamka_attributes] = poznamka_attributes if has? 'Poznamka' hash end end end end
Version data entries
7 entries across 7 versions & 1 rubygems