There's no documentation for this item.
Source Code
# File wsdl/operation.rb, line 75 def parse_element(element) case element when InputName o = Param.new @input = o o when OutputName o = Param.new @output = o o when FaultName o = Param.new @fault << o o when DocumentationName o = Documentation.new o else nil end end
<code/>and<pre/>for code samples.