Class: WSDL::OperationBinding::Part

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#elementObject (readonly)

Returns the value of attribute element.



47
48
49
# File 'lib/wsdl/operationBinding.rb', line 47

def element
  @element
end

#io_typeObject (readonly)

Returns the value of attribute io_type.



44
45
46
# File 'lib/wsdl/operationBinding.rb', line 44

def io_type
  @io_type
end

#nameObject (readonly)

Returns the value of attribute name.



45
46
47
# File 'lib/wsdl/operationBinding.rb', line 45

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



46
47
48
# File 'lib/wsdl/operationBinding.rb', line 46

def type
  @type
end