Class: StatusHistory
- Inherits:
-
Object
- Object
- StatusHistory
- Defined in:
- lib/default.rb
Overview
/StatusHistory
date - SOAP::SOAPDateTime
transactionStatus - TransactionStatus
statusCode - SOAP::SOAPString
amount - Amount
Instance Attribute Summary collapse
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#date ⇒ Object
Returns the value of attribute date.
-
#statusCode ⇒ Object
Returns the value of attribute statusCode.
-
#transactionStatus ⇒ Object
Returns the value of attribute transactionStatus.
Instance Method Summary collapse
-
#initialize(date = nil, transactionStatus = nil, statusCode = nil, amount = nil) ⇒ StatusHistory
constructor
A new instance of StatusHistory.
Constructor Details
#initialize(date = nil, transactionStatus = nil, statusCode = nil, amount = nil) ⇒ StatusHistory
Returns a new instance of StatusHistory.
284 285 286 287 288 289 |
# File 'lib/default.rb', line 284 def initialize(date = nil, transactionStatus = nil, statusCode = nil, amount = nil) @date = date @transactionStatus = transactionStatus @statusCode = statusCode @amount = amount end |
Instance Attribute Details
#amount ⇒ Object
Returns the value of attribute amount.
282 283 284 |
# File 'lib/default.rb', line 282 def amount @amount end |
#date ⇒ Object
Returns the value of attribute date.
279 280 281 |
# File 'lib/default.rb', line 279 def date @date end |
#statusCode ⇒ Object
Returns the value of attribute statusCode.
281 282 283 |
# File 'lib/default.rb', line 281 def statusCode @statusCode end |
#transactionStatus ⇒ Object
Returns the value of attribute transactionStatus.
280 281 282 |
# File 'lib/default.rb', line 280 def transactionStatus @transactionStatus end |