Sha256: 05150bf5a643f91ebd6f15f0b07bb4efd69e5bc61ebe50e713984b77ceb9ebdd
Contents?: true
Size: 599 Bytes
Versions: 4
Compression:
Stored size: 599 Bytes
Contents
require 'money_s3/parsers/base_parser' module MoneyS3 module Parsers class VyrobniCisloType include BaseParser def vyrobni_cis at 'VyrobniCis' end def datum_vyrob at 'DatumVyrob' end def carovy_kod at 'CarovyKod' end def to_h_with_attrs hash = HashWithAttributes.new({}, attributes) hash[:vyrobni_cis] = vyrobni_cis if has? 'VyrobniCis' hash[:datum_vyrob] = datum_vyrob if has? 'DatumVyrob' hash[:carovy_kod] = carovy_kod if has? 'CarovyKod' hash end end end end
Version data entries
4 entries across 4 versions & 1 rubygems