Class: SOAP::RPC::MethodDef::Parameter
- Inherits:
-
Object
- Object
- SOAP::RPC::MethodDef::Parameter
- Defined in:
- lib/soap/rpc/methodDef.rb
Instance Attribute Summary (collapse)
-
- (Object) io_type
readonly
Returns the value of attribute io_type.
-
- (Object) mapped_class
readonly
Returns the value of attribute mapped_class.
-
- (Object) name
readonly
Returns the value of attribute name.
-
- (Object) qname
readonly
Returns the value of attribute qname.
Instance Method Summary (collapse)
-
- (Parameter) initialize(io_type, name, qname, mapped_class)
constructor
A new instance of Parameter.
Constructor Details
- (Parameter) initialize(io_type, name, qname, mapped_class)
A new instance of Parameter
57 58 59 60 61 62 |
# 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 |
Instance Attribute Details
- (Object) io_type (readonly)
Returns the value of attribute io_type
52 53 54 |
# File 'lib/soap/rpc/methodDef.rb', line 52 def io_type @io_type end |
- (Object) mapped_class (readonly)
Returns the value of attribute mapped_class
55 56 57 |
# File 'lib/soap/rpc/methodDef.rb', line 55 def mapped_class @mapped_class end |
- (Object) name (readonly)
Returns the value of attribute name
53 54 55 |
# File 'lib/soap/rpc/methodDef.rb', line 53 def name @name end |
- (Object) qname (readonly)
Returns the value of attribute qname
54 55 56 |
# File 'lib/soap/rpc/methodDef.rb', line 54 def qname @qname end |