Sha256: df555d594211f735393629fa21960ae765d823ddce2745e9bf315cb9dff2b14f
Contents?: true
Size: 537 Bytes
Versions: 4
Compression:
Stored size: 537 Bytes
Contents
require 'money_s3/parsers/base_parser' module MoneyS3 module Parsers class PreprDoplnUdajType include BaseParser def zkrat at 'Zkrat' end def popis at 'Popis' end def poznamka at 'Poznamka' end def to_h_with_attrs hash = HashWithAttributes.new({}, attributes) hash[:zkrat] = zkrat if has? 'Zkrat' hash[:popis] = popis if has? 'Popis' hash[:poznamka] = poznamka if has? 'Poznamka' hash end end end end
Version data entries
4 entries across 4 versions & 1 rubygems