class SOAP::RPC::MethodDef::Parameter

Attributes

io_type[R]
mapped_class[R]
name[R]
qname[R]

Public Class Methods

new(io_type, name, qname, mapped_class) click to toggle source
# File lib/soap/rpc/methodDef.rb, line 57
def initialize(io_type, name, qname, mapped_class)
  @io_type = io_type
  @name = name
  @qname = qname
  @mapped_class = mapped_class
end