Flowdock
method

dump_inputparam

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::SOAP::ClassDefCreatorSupport
dump_inputparam(input) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/wsdl/soap/classDefCreatorSupport.rb, line 103
  def dump_inputparam(input)
    message = input.find_message
    params = ""
    message.parts.each do |part|
      params << ", " unless params.empty?
      params << safevarname(part.name)
    end
    if params.empty?
      ""
    else
      "(#{ params })"
    end
  end
Register or log in to add new notes.