6
7
8
9
10
11
12
13
14
15
|
# File 'lib/money_s3/builders/vyrobni_cislo_type.rb', line 6
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('DatumVyrob', data[:datum_vyrob], data[:datum_vyrob_attributes]) if data.key? :datum_vyrob
root << build_element('CarovyKod', data[:carovy_kod], data[:carovy_kod_attributes]) if data.key? :carovy_kod
root
end
|