Class: CancelToken
- Inherits:
-
Object
- Object
- CancelToken
- Defined in:
- lib/default.rb
Overview
/CancelToken
tokenId - SOAP::SOAPString
reasonText - SOAP::SOAPString
Instance Attribute Summary collapse
-
#reasonText ⇒ Object
Returns the value of attribute reasonText.
-
#tokenId ⇒ Object
Returns the value of attribute tokenId.
Instance Method Summary collapse
-
#initialize(tokenId = nil, reasonText = nil) ⇒ CancelToken
constructor
A new instance of CancelToken.
Constructor Details
#initialize(tokenId = nil, reasonText = nil) ⇒ CancelToken
Returns a new instance of CancelToken.
504 505 506 507 |
# File 'lib/default.rb', line 504 def initialize(tokenId = nil, reasonText = nil) @tokenId = tokenId @reasonText = reasonText end |
Instance Attribute Details
#reasonText ⇒ Object
Returns the value of attribute reasonText.
502 503 504 |
# File 'lib/default.rb', line 502 def reasonText @reasonText end |
#tokenId ⇒ Object
Returns the value of attribute tokenId.
501 502 503 |
# File 'lib/default.rb', line 501 def tokenId @tokenId end |