Class: ProcessResult
- Inherits:
-
Object
- Object
- ProcessResult
- Defined in:
- lib/model/ProcessResult.rb
Instance Attribute Summary (collapse)
-
- (Object) ACHEFTREFERENCENUM
Returns the value of attribute ACHEFTREFERENCENUM.
-
- (Object) AUTHORIZATIONRESULT
Returns the value of attribute AUTHORIZATIONRESULT.
-
- (Object) BANKERROR
Returns the value of attribute BANKERROR.
-
- (Object) CUSTOMERCODE
Returns the value of attribute CUSTOMERCODE.
-
- (Object) REGISTERREFNUMRESULT
Returns the value of attribute REGISTERREFNUMRESULT.
-
- (Object) SETTLEMENTBATCHDATE
Returns the value of attribute SETTLEMENTBATCHDATE.
-
- (Object) SETTLEMENTDATE
Returns the value of attribute SETTLEMENTDATE.
-
- (Object) TRANSACTIONID
Returns the value of attribute TRANSACTIONID.
Instance Method Summary (collapse)
-
- (ProcessResult) initialize(hash)
constructor
A new instance of ProcessResult.
Constructor Details
- (ProcessResult) initialize(hash)
Returns a new instance of ProcessResult
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/model/ProcessResult.rb', line 11 def initialize(hash) unless hash.nil? @AUTHORIZATIONRESULT = hash["AUTHORIZATIONRESULT"] @CUSTOMERCODE = hash["CUSTOMERCODE"] @SETTLEMENTBATCHDATE = hash["SETTLEMENTBATCHDATE"] @SETTLEMENTDATE = hash["SETTLEMENTDATE"] @TRANSACTIONID = hash["TRANSACTIONID"] @REGISTERREFNUMRESULT = hash["REGISTERREFNUMRESULT"] @BANKERROR = hash["BANKERROR"] @ACHEFTREFERENCENUM = hash["ACHEFTREFERENCENUM"] end end |
Instance Attribute Details
- (Object) ACHEFTREFERENCENUM
Returns the value of attribute ACHEFTREFERENCENUM
9 10 11 |
# File 'lib/model/ProcessResult.rb', line 9 def ACHEFTREFERENCENUM @ACHEFTREFERENCENUM end |
- (Object) AUTHORIZATIONRESULT
Returns the value of attribute AUTHORIZATIONRESULT
2 3 4 |
# File 'lib/model/ProcessResult.rb', line 2 def AUTHORIZATIONRESULT @AUTHORIZATIONRESULT end |
- (Object) BANKERROR
Returns the value of attribute BANKERROR
8 9 10 |
# File 'lib/model/ProcessResult.rb', line 8 def BANKERROR @BANKERROR end |
- (Object) CUSTOMERCODE
Returns the value of attribute CUSTOMERCODE
3 4 5 |
# File 'lib/model/ProcessResult.rb', line 3 def CUSTOMERCODE @CUSTOMERCODE end |
- (Object) REGISTERREFNUMRESULT
Returns the value of attribute REGISTERREFNUMRESULT
7 8 9 |
# File 'lib/model/ProcessResult.rb', line 7 def REGISTERREFNUMRESULT @REGISTERREFNUMRESULT end |
- (Object) SETTLEMENTBATCHDATE
Returns the value of attribute SETTLEMENTBATCHDATE
4 5 6 |
# File 'lib/model/ProcessResult.rb', line 4 def SETTLEMENTBATCHDATE @SETTLEMENTBATCHDATE end |
- (Object) SETTLEMENTDATE
Returns the value of attribute SETTLEMENTDATE
5 6 7 |
# File 'lib/model/ProcessResult.rb', line 5 def SETTLEMENTDATE @SETTLEMENTDATE end |
- (Object) TRANSACTIONID
Returns the value of attribute TRANSACTIONID
6 7 8 |
# File 'lib/model/ProcessResult.rb', line 6 def TRANSACTIONID @TRANSACTIONID end |