Class: MoneyS3::Builders::VyrobniCislo

Inherits:
Object
  • Object
show all
Includes:
ParserCore::BaseBuilder
Defined in:
lib/money_s3/builders/vyrobni_cislo.rb

Instance Method Summary collapse

Instance Method Details

#builderObject



6
7
8
9
10
11
12
13
14
15
# File 'lib/money_s3/builders/vyrobni_cislo.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('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