Class: StatusChange
- Inherits:
-
Object
- Object
- StatusChange
- Defined in:
- lib/default.rb
Overview
/StatusChange
date - SOAP::SOAPDateTime
status - TransactionStatus
amount - Amount
Instance Attribute Summary collapse
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#date ⇒ Object
Returns the value of attribute date.
-
#status ⇒ Object
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(date = nil, status = nil, amount = nil) ⇒ StatusChange
constructor
A new instance of StatusChange.
Constructor Details
#initialize(date = nil, status = nil, amount = nil) ⇒ StatusChange
Returns a new instance of StatusChange.
36 37 38 39 40 |
# File 'lib/default.rb', line 36 def initialize(date = nil, status = nil, amount = nil) @date = date @status = status @amount = amount end |
Instance Attribute Details
#amount ⇒ Object
Returns the value of attribute amount.
34 35 36 |
# File 'lib/default.rb', line 34 def amount @amount end |
#date ⇒ Object
Returns the value of attribute date.
32 33 34 |
# File 'lib/default.rb', line 32 def date @date end |
#status ⇒ Object
Returns the value of attribute status.
33 34 35 |
# File 'lib/default.rb', line 33 def status @status end |