Class: DeleteResult
- Inherits:
-
Object
- Object
- DeleteResult
- Defined in:
- lib/stub/default.rb
Overview
urn:wsurn:ws.rsysurn:ws.rsys.comDeleteResult
id - SOAP::SOAPString
success - SOAP::SOAPBoolean
exceptionCode - ExceptionCode
errorMessage - SOAP::SOAPString
Instance Attribute Summary collapse
-
#errorMessage ⇒ Object
Returns the value of attribute errorMessage.
-
#exceptionCode ⇒ Object
Returns the value of attribute exceptionCode.
-
#id ⇒ Object
Returns the value of attribute id.
-
#success ⇒ Object
Returns the value of attribute success.
Instance Method Summary collapse
-
#initialize(id = nil, success = nil, exceptionCode = nil, errorMessage = nil) ⇒ DeleteResult
constructor
A new instance of DeleteResult.
Constructor Details
#initialize(id = nil, success = nil, exceptionCode = nil, errorMessage = nil) ⇒ DeleteResult
Returns a new instance of DeleteResult.
451 452 453 454 455 456 |
# File 'lib/stub/default.rb', line 451 def initialize(id = nil, success = nil, exceptionCode = nil, errorMessage = nil) @id = id @success = success @exceptionCode = exceptionCode @errorMessage = errorMessage end |
Instance Attribute Details
#errorMessage ⇒ Object
Returns the value of attribute errorMessage.
449 450 451 |
# File 'lib/stub/default.rb', line 449 def errorMessage @errorMessage end |
#exceptionCode ⇒ Object
Returns the value of attribute exceptionCode.
448 449 450 |
# File 'lib/stub/default.rb', line 448 def exceptionCode @exceptionCode end |
#id ⇒ Object
Returns the value of attribute id.
446 447 448 |
# File 'lib/stub/default.rb', line 446 def id @id end |
#success ⇒ Object
Returns the value of attribute success.
447 448 449 |
# File 'lib/stub/default.rb', line 447 def success @success end |