Class: OptionalData

Inherits:
Object
  • Object
show all
Defined in:
lib/stub/default.rb

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comOptionalData

name - SOAP::SOAPString
value - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, value = nil) ⇒ OptionalData

Returns a new instance of OptionalData.



103
104
105
106
# File 'lib/stub/default.rb', line 103

def initialize(name = nil, value = nil)
  @name = name
  @value = value
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



100
101
102
# File 'lib/stub/default.rb', line 100

def name
  @name
end

#valueObject

Returns the value of attribute value.



101
102
103
# File 'lib/stub/default.rb', line 101

def value
  @value
end