Class: Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderAddress
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderAddress
- Defined in:
- lib/increase/models/real_time_decision.rb
Instance Attribute Summary collapse
-
#actual_line1 ⇒ String
Line 1 of the address on file for the cardholder.
-
#actual_postal_code ⇒ String
The postal code of the address on file for the cardholder.
-
#provided_line1 ⇒ String
The cardholder address line 1 provided for verification in the authorization request.
-
#provided_postal_code ⇒ String
The postal code provided for verification in the authorization request.
-
#result ⇒ Symbol
The address verification result returned to the card network.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#actual_line1 ⇒ String
Line 1 of the address on file for the cardholder.
299 |
# File 'lib/increase/models/real_time_decision.rb', line 299 required :actual_line1, String |
#actual_postal_code ⇒ String
The postal code of the address on file for the cardholder.
304 |
# File 'lib/increase/models/real_time_decision.rb', line 304 required :actual_postal_code, String |
#provided_line1 ⇒ String
The cardholder address line 1 provided for verification in the authorization request.
309 |
# File 'lib/increase/models/real_time_decision.rb', line 309 required :provided_line1, String |
#provided_postal_code ⇒ String
The postal code provided for verification in the authorization request.
314 |
# File 'lib/increase/models/real_time_decision.rb', line 314 required :provided_postal_code, String |
#result ⇒ Symbol
The address verification result returned to the card network.
319 320 321 322 323 324 325 326 327 |
# File 'lib/increase/models/real_time_decision.rb', line 319 required :result, Increase::Enum.new( :not_checked, :postal_code_match_address_not_checked, :postal_code_match_address_no_match, :postal_code_no_match_address_match, :match, :no_match ) |