Class: Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::DeclinedTransaction::Source::CardDecline::Verification::CardholderAddress
- Defined in:
- lib/increase/models/declined_transaction.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.
417 |
# File 'lib/increase/models/declined_transaction.rb', line 417 required :actual_line1, String |
#actual_postal_code ⇒ String
The postal code of the address on file for the cardholder.
422 |
# File 'lib/increase/models/declined_transaction.rb', line 422 required :actual_postal_code, String |
#provided_line1 ⇒ String
The cardholder address line 1 provided for verification in the authorization request.
427 |
# File 'lib/increase/models/declined_transaction.rb', line 427 required :provided_line1, String |
#provided_postal_code ⇒ String
The postal code provided for verification in the authorization request.
432 |
# File 'lib/increase/models/declined_transaction.rb', line 432 required :provided_postal_code, String |
#result ⇒ Symbol
The address verification result returned to the card network.
437 438 439 440 441 442 443 444 445 |
# File 'lib/increase/models/declined_transaction.rb', line 437 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 ) |