Class: Token
- Inherits:
-
Object
- Object
- Token
- Defined in:
- lib/default.rb
Overview
/Token
tokenId - (any)
friendlyName - SOAP::SOAPString
status - TokenStatus
dateInstalled - SOAP::SOAPDateTime
callerInstalled - (any)
callerReference - SOAP::SOAPString
tokenType - TokenType
oldTokenId - (any)
paymentReason - SOAP::SOAPString
Instance Attribute Summary collapse
-
#callerInstalled ⇒ Object
Returns the value of attribute callerInstalled.
-
#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.
-
#status ⇒ Object
Returns the value of attribute status.
-
#tokenId ⇒ Object
Returns the value of attribute tokenId.
-
#tokenType ⇒ Object
Returns the value of attribute tokenType.
Instance Method Summary collapse
-
#initialize(tokenId = nil, friendlyName = nil, status = nil, dateInstalled = nil, callerInstalled = nil, callerReference = nil, tokenType = nil, oldTokenId = nil, paymentReason = nil) ⇒ Token
constructor
A new instance of Token.
Constructor Details
#initialize(tokenId = nil, friendlyName = nil, status = nil, dateInstalled = nil, callerInstalled = nil, callerReference = nil, tokenType = nil, oldTokenId = nil, paymentReason = nil) ⇒ Token
Returns a new instance of Token.
105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/default.rb', line 105 def initialize(tokenId = nil, friendlyName = nil, status = nil, dateInstalled = nil, callerInstalled = nil, callerReference = nil, tokenType = nil, oldTokenId = nil, paymentReason = nil) @tokenId = tokenId @friendlyName = friendlyName @status = status @dateInstalled = dateInstalled @callerInstalled = callerInstalled @callerReference = callerReference @tokenType = tokenType @oldTokenId = oldTokenId @paymentReason = paymentReason end |
Instance Attribute Details
#callerInstalled ⇒ Object
Returns the value of attribute callerInstalled.
99 100 101 |
# File 'lib/default.rb', line 99 def callerInstalled @callerInstalled end |
#callerReference ⇒ Object
Returns the value of attribute callerReference.
100 101 102 |
# File 'lib/default.rb', line 100 def callerReference @callerReference end |
#dateInstalled ⇒ Object
Returns the value of attribute dateInstalled.
98 99 100 |
# File 'lib/default.rb', line 98 def dateInstalled @dateInstalled end |
#friendlyName ⇒ Object
Returns the value of attribute friendlyName.
96 97 98 |
# File 'lib/default.rb', line 96 def friendlyName @friendlyName end |
#oldTokenId ⇒ Object
Returns the value of attribute oldTokenId.
102 103 104 |
# File 'lib/default.rb', line 102 def oldTokenId @oldTokenId end |
#paymentReason ⇒ Object
Returns the value of attribute paymentReason.
103 104 105 |
# File 'lib/default.rb', line 103 def paymentReason @paymentReason end |
#status ⇒ Object
Returns the value of attribute status.
97 98 99 |
# File 'lib/default.rb', line 97 def status @status end |
#tokenId ⇒ Object
Returns the value of attribute tokenId.
95 96 97 |
# File 'lib/default.rb', line 95 def tokenId @tokenId end |
#tokenType ⇒ Object
Returns the value of attribute tokenType.
101 102 103 |
# File 'lib/default.rb', line 101 def tokenType @tokenType end |