Class: Token

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#callerReferenceObject

Returns the value of attribute callerReference.



195
196
197
# File 'lib/default.rb', line 195

def callerReference
  @callerReference
end

#dateInstalledObject

Returns the value of attribute dateInstalled.



194
195
196
# File 'lib/default.rb', line 194

def dateInstalled
  @dateInstalled
end

#friendlyNameObject

Returns the value of attribute friendlyName.



192
193
194
# File 'lib/default.rb', line 192

def friendlyName
  @friendlyName
end

#oldTokenIdObject

Returns the value of attribute oldTokenId.



197
198
199
# File 'lib/default.rb', line 197

def oldTokenId
  @oldTokenId
end

#paymentReasonObject

Returns the value of attribute paymentReason.



198
199
200
# File 'lib/default.rb', line 198

def paymentReason
  @paymentReason
end

#tokenIdObject

Returns the value of attribute tokenId.



191
192
193
# File 'lib/default.rb', line 191

def tokenId
  @tokenId
end

#tokenStatusObject

Returns the value of attribute tokenStatus.



193
194
195
# File 'lib/default.rb', line 193

def tokenStatus
  @tokenStatus
end

#tokenTypeObject

Returns the value of attribute tokenType.



196
197
198
# File 'lib/default.rb', line 196

def tokenType
  @tokenType
end