Class: WSDL::OperationBinding::Part
- Defined in:
- lib/wsdl/operationBinding.rb
Instance Attribute Summary collapse
-
#element ⇒ Object
readonly
Returns the value of attribute element.
-
#io_type ⇒ Object
readonly
Returns the value of attribute io_type.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(io_type, name, type, element) ⇒ Part
constructor
A new instance of Part.
Constructor Details
#initialize(io_type, name, type, element) ⇒ Part
Returns a new instance of Part.
49 50 51 52 53 54 |
# File 'lib/wsdl/operationBinding.rb', line 49 def initialize(io_type, name, type, element) @io_type = io_type @name = name @type = type @element = element end |
Instance Attribute Details
#element ⇒ Object (readonly)
Returns the value of attribute element.
47 48 49 |
# File 'lib/wsdl/operationBinding.rb', line 47 def element @element end |
#io_type ⇒ Object (readonly)
Returns the value of attribute io_type.
44 45 46 |
# File 'lib/wsdl/operationBinding.rb', line 44 def io_type @io_type end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
45 46 47 |
# File 'lib/wsdl/operationBinding.rb', line 45 def name @name end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
46 47 48 |
# File 'lib/wsdl/operationBinding.rb', line 46 def type @type end |