class Pohoda::Builders::Inv::PaymentAccount

Public Instance Methods

builder() click to toggle source
# File lib/pohoda/builders/inv/payment_account.rb, line 8
def builder
  root = Ox::Element.new(name)
  root = add_attributes_and_namespaces(root)

  mega.each do |r|
    r.nodes.each { |n| root << n }
  end

  root
end