Method: WSDL::SOAP::Operation::ParamInfo#initialize
- Defined in:
- lib/wsdl/soap/operation.rb
#initialize(style, use, encodingstyle, op_name, optype_name, headerparts, bodyparts, faultpart, soapaction) ⇒ ParamInfo
Returns a new instance of ParamInfo.
28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/wsdl/soap/operation.rb', line 28 def initialize(style, use, encodingstyle, op_name, optype_name, headerparts, bodyparts, faultpart, soapaction) @style = style @use = use @encodingstyle = encodingstyle @op_name = op_name @optype_name = optype_name @headerparts = headerparts @bodyparts = bodyparts @faultpart = faultpart @soapaction = soapaction end |