Class: Increase::Models::CardPayment::Element::CardValidation::Verification::CardholderAddress

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/card_payment.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#actual_line1String

Line 1 of the address on file for the cardholder.

Returns:

  • (String)


2099
# File 'lib/increase/models/card_payment.rb', line 2099

required :actual_line1, String

#actual_postal_codeString

The postal code of the address on file for the cardholder.

Returns:

  • (String)


2104
# File 'lib/increase/models/card_payment.rb', line 2104

required :actual_postal_code, String

#provided_line1String

The cardholder address line 1 provided for verification in the authorization request.

Returns:

  • (String)


2109
# File 'lib/increase/models/card_payment.rb', line 2109

required :provided_line1, String

#provided_postal_codeString

The postal code provided for verification in the authorization request.

Returns:

  • (String)


2114
# File 'lib/increase/models/card_payment.rb', line 2114

required :provided_postal_code, String

#resultSymbol

The address verification result returned to the card network.

Returns:

  • (Symbol)


2119
2120
2121
2122
2123
2124
2125
2126
2127
# File 'lib/increase/models/card_payment.rb', line 2119

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
)