class MoneyS3::Builders::SeznamInvDokl

Public Instance Methods

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

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

  root
end