Class: Token
- Inherits:
-
Object
- Object
- Token
- Defined in:
- lib/default.rb
Overview
/Token
tokenId - SOAP::SOAPString
friendlyName - SOAP::SOAPString
tokenStatus - TokenStatus
dateInstalled - SOAP::SOAPDateTime
callerReference - SOAP::SOAPString
tokenType - TokenType
oldTokenId - SOAP::SOAPString
paymentReason - SOAP::SOAPString
Instance Attribute Summary collapse
-
#callerReference ⇒ Object
Returns the value of attribute callerReference.
-
#dateInstalled ⇒ Object
Returns the value of attribute dateInstalled.
-
#friendlyName ⇒ Object
Returns the value of attribute friendlyName.
-
#oldTokenId ⇒ Object
Returns the value of attribute oldTokenId.
-
#paymentReason ⇒ Object
Returns the value of attribute paymentReason.
-
#tokenId ⇒ Object
Returns the value of attribute tokenId.
-
#tokenStatus ⇒ Object
Returns the value of attribute tokenStatus.
-
#tokenType ⇒ Object
Returns the value of attribute tokenType.
Instance Method Summary collapse
-
#initialize(tokenId = nil, friendlyName = nil, tokenStatus = nil, dateInstalled = nil, callerReference = nil, tokenType = nil, oldTokenId = nil, paymentReason = nil) ⇒ Token
constructor
A new instance of Token.
Constructor Details
#initialize(tokenId = nil, friendlyName = nil, tokenStatus = nil, dateInstalled = nil, callerReference = nil, tokenType = nil, oldTokenId = nil, paymentReason = nil) ⇒ Token
Returns a new instance of Token.
200 201 202 203 204 205 206 207 208 209 |
# File 'lib/default.rb', line 200 def initialize(tokenId = nil, friendlyName = nil, tokenStatus = nil, dateInstalled = nil, callerReference = nil, tokenType = nil, oldTokenId = nil, paymentReason = nil) @tokenId = tokenId @friendlyName = friendlyName @tokenStatus = tokenStatus @dateInstalled = dateInstalled @callerReference = callerReference @tokenType = tokenType @oldTokenId = oldTokenId @paymentReason = paymentReason end |
Instance Attribute Details
#callerReference ⇒ Object
Returns the value of attribute callerReference.
195 196 197 |
# File 'lib/default.rb', line 195 def callerReference @callerReference end |
#dateInstalled ⇒ Object
Returns the value of attribute dateInstalled.
194 195 196 |
# File 'lib/default.rb', line 194 def dateInstalled @dateInstalled end |
#friendlyName ⇒ Object
Returns the value of attribute friendlyName.
192 193 194 |
# File 'lib/default.rb', line 192 def friendlyName @friendlyName end |
#oldTokenId ⇒ Object
Returns the value of attribute oldTokenId.
197 198 199 |
# File 'lib/default.rb', line 197 def oldTokenId @oldTokenId end |
#paymentReason ⇒ Object
Returns the value of attribute paymentReason.
198 199 200 |
# File 'lib/default.rb', line 198 def paymentReason @paymentReason end |
#tokenId ⇒ Object
Returns the value of attribute tokenId.
191 192 193 |
# File 'lib/default.rb', line 191 def tokenId @tokenId end |
#tokenStatus ⇒ Object
Returns the value of attribute tokenStatus.
193 194 195 |
# File 'lib/default.rb', line 193 def tokenStatus @tokenStatus end |
#tokenType ⇒ Object
Returns the value of attribute tokenType.
196 197 198 |
# File 'lib/default.rb', line 196 def tokenType @tokenType end |