Class: AuthResult
- Inherits:
-
Object
- Object
- AuthResult
- Defined in:
- lib/model/AuthResult.rb
Instance Attribute Summary (collapse)
-
- (Object) ACHREFNUM
Returns the value of attribute ACHREFNUM.
-
- (Object) AUTHCODE
Returns the value of attribute AUTHCODE.
-
- (Object) AUTHSTATUS
Returns the value of attribute AUTHSTATUS.
-
- (Object) BANK_BRANCH
Returns the value of attribute BANK_BRANCH.
-
- (Object) BANK_CITY
Returns the value of attribute BANK_CITY.
-
- (Object) BANK_NAME
Returns the value of attribute BANK_NAME.
-
- (Object) BANK_POSTCODE
Returns the value of attribute BANK_POSTCODE.
-
- (Object) BANK_STATE
Returns the value of attribute BANK_STATE.
-
- (Object) BANKADDRESS1
Returns the value of attribute BANKADDRESS1.
-
- (Object) BANKADDRESS2
Returns the value of attribute BANKADDRESS2.
-
- (Object) BANKADDRESS3
Returns the value of attribute BANKADDRESS3.
-
- (Object) BANKADDRESS4
Returns the value of attribute BANKADDRESS4.
-
- (Object) BANKERROR
Returns the value of attribute BANKERROR.
Instance Method Summary (collapse)
-
- (AuthResult) initialize(hash)
constructor
A new instance of AuthResult.
Constructor Details
- (AuthResult) initialize(hash)
Returns a new instance of AuthResult
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/model/AuthResult.rb', line 16 def initialize(hash) @AUTHSTATUS = hash["AUTHSTATUS"] @AUTHCODE = hash["AUTHCODE"] @ACHREFNUM = hash["ACHREFNUM"] @BANKERROR = hash["BANKERROR"] @BANK_NAME = hash["BANK_NAME"] @BANK_BRANCH = hash["BANK_BRANCH"] @BANKADDRESS1 = hash["BANKADDRESS1"] @BANKADDRESS2 = hash["BANKADDRESS2"] @BANKADDRESS3 = hash["BANKADDRESS3"] @BANKADDRESS4 = hash["BANKADDRESS4"] @BANK_CITY = hash["BANK_CITY"] @BANK_STATE = hash["BANK_STATE"] @BANK_POSTCODE = hash["BANK_POSTCODE"] end |
Instance Attribute Details
- (Object) ACHREFNUM
Returns the value of attribute ACHREFNUM
4 5 6 |
# File 'lib/model/AuthResult.rb', line 4 def ACHREFNUM @ACHREFNUM end |
- (Object) AUTHCODE
Returns the value of attribute AUTHCODE
3 4 5 |
# File 'lib/model/AuthResult.rb', line 3 def AUTHCODE @AUTHCODE end |
- (Object) AUTHSTATUS
Returns the value of attribute AUTHSTATUS
2 3 4 |
# File 'lib/model/AuthResult.rb', line 2 def AUTHSTATUS @AUTHSTATUS end |
- (Object) BANK_BRANCH
Returns the value of attribute BANK_BRANCH
7 8 9 |
# File 'lib/model/AuthResult.rb', line 7 def BANK_BRANCH @BANK_BRANCH end |
- (Object) BANK_CITY
Returns the value of attribute BANK_CITY
12 13 14 |
# File 'lib/model/AuthResult.rb', line 12 def BANK_CITY @BANK_CITY end |
- (Object) BANK_NAME
Returns the value of attribute BANK_NAME
6 7 8 |
# File 'lib/model/AuthResult.rb', line 6 def BANK_NAME @BANK_NAME end |
- (Object) BANK_POSTCODE
Returns the value of attribute BANK_POSTCODE
14 15 16 |
# File 'lib/model/AuthResult.rb', line 14 def BANK_POSTCODE @BANK_POSTCODE end |
- (Object) BANK_STATE
Returns the value of attribute BANK_STATE
13 14 15 |
# File 'lib/model/AuthResult.rb', line 13 def BANK_STATE @BANK_STATE end |
- (Object) BANKADDRESS1
Returns the value of attribute BANKADDRESS1
8 9 10 |
# File 'lib/model/AuthResult.rb', line 8 def BANKADDRESS1 @BANKADDRESS1 end |
- (Object) BANKADDRESS2
Returns the value of attribute BANKADDRESS2
9 10 11 |
# File 'lib/model/AuthResult.rb', line 9 def BANKADDRESS2 @BANKADDRESS2 end |
- (Object) BANKADDRESS3
Returns the value of attribute BANKADDRESS3
10 11 12 |
# File 'lib/model/AuthResult.rb', line 10 def BANKADDRESS3 @BANKADDRESS3 end |
- (Object) BANKADDRESS4
Returns the value of attribute BANKADDRESS4
11 12 13 |
# File 'lib/model/AuthResult.rb', line 11 def BANKADDRESS4 @BANKADDRESS4 end |
- (Object) BANKERROR
Returns the value of attribute BANKERROR
5 6 7 |
# File 'lib/model/AuthResult.rb', line 5 def BANKERROR @BANKERROR end |