Class: Token

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

Instance Method Summary collapse

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

#callerInstalledObject

Returns the value of attribute callerInstalled.



99
100
101
# File 'lib/default.rb', line 99

def callerInstalled
  @callerInstalled
end

#callerReferenceObject

Returns the value of attribute callerReference.



100
101
102
# File 'lib/default.rb', line 100

def callerReference
  @callerReference
end

#dateInstalledObject

Returns the value of attribute dateInstalled.



98
99
100
# File 'lib/default.rb', line 98

def dateInstalled
  @dateInstalled
end

#friendlyNameObject

Returns the value of attribute friendlyName.



96
97
98
# File 'lib/default.rb', line 96

def friendlyName
  @friendlyName
end

#oldTokenIdObject

Returns the value of attribute oldTokenId.



102
103
104
# File 'lib/default.rb', line 102

def oldTokenId
  @oldTokenId
end

#paymentReasonObject

Returns the value of attribute paymentReason.



103
104
105
# File 'lib/default.rb', line 103

def paymentReason
  @paymentReason
end

#statusObject

Returns the value of attribute status.



97
98
99
# File 'lib/default.rb', line 97

def status
  @status
end

#tokenIdObject

Returns the value of attribute tokenId.



95
96
97
# File 'lib/default.rb', line 95

def tokenId
  @tokenId
end

#tokenTypeObject

Returns the value of attribute tokenType.



101
102
103
# File 'lib/default.rb', line 101

def tokenType
  @tokenType
end