Sha256: ae297d4cc54f27112203f24e28e9a4a17f81706b530eef320e67a1df17f2f27d
Contents?: true
Size: 574 Bytes
Versions: 6
Compression:
Stored size: 574 Bytes
Contents
module MoneyS3 module Builders class VyrobniCislo include ParserCore::BaseBuilder def builder root = Ox::Element.new(name) root = add_attributes_and_namespaces(root) root << build_element('VyrobniCis', data[:vyrobni_cis], data[:vyrobni_cis_attributes]) if data.key? :vyrobni_cis root << build_element('DatVyr', data[:dat_vyr], data[:dat_vyr_attributes]) if data.key? :dat_vyr root << build_element('CarKod', data[:car_kod], data[:car_kod_attributes]) if data.key? :car_kod root end end end end
Version data entries
6 entries across 6 versions & 1 rubygems