Class: WSDL::Operation::NameInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/wsdl/operation.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(op_name, optype_name, parts) ⇒ NameInfo

Returns a new instance of NameInfo.



20
21
22
23
24
# File 'lib/wsdl/operation.rb', line 20

def initialize(op_name, optype_name, parts)
  @op_name = op_name
  @optype_name = optype_name
  @parts = parts
end

Instance Attribute Details

#op_nameObject (readonly)

Returns the value of attribute op_name



17
18
19
# File 'lib/wsdl/operation.rb', line 17

def op_name
  @op_name
end

#optype_nameObject (readonly)

Returns the value of attribute optype_name



18
19
20
# File 'lib/wsdl/operation.rb', line 18

def optype_name
  @optype_name
end

#partsObject (readonly)

Returns the value of attribute parts



19
20
21
# File 'lib/wsdl/operation.rb', line 19

def parts
  @parts
end