module Yardi::RequestSection

ALL REQUEST SECTIONS* must define a generate method which builds their corresponding XML generate returns a Nokogiri::DocumentFragment. Example: class TestSectionFoo

def generate
  foo_fragment = Nokogiri::XML::DocumentFragment.parse('')

  Nokogiri::XML::Builder.with(foo_fragment) do |foo_xml|
    foo_xml.Foo 'foo_value'
  end

  foo_fragment
end

end

the only section that is namespaced.