Sha256: 26e1d4c0e65fc33090e5cfcecf72f6eb5ecee88e03f9eb45b2b255192a420997
Contents?: true
Size: 533 Bytes
Versions: 4
Compression:
Stored size: 533 Bytes
Contents
require 'money_s3/parsers/base_parser' module MoneyS3 module Parsers class TypZasilkyType 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