class MoneyS3::Builders::SeznamIntDokl

Public Instance Methods

builder() click to toggle source
# File lib/money_s3/builders/seznam_int_dokl.rb, line 6
def builder
  root = Ox::Element.new(name)
  root = add_attributes_and_namespaces(root)

  if data.key? :int_dokl
    data[:int_dokl].each { |i| root << IntDokl.new('IntDokl', i).builder }
  end

  root
end