Class: Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderAddress
- Defined in:
- lib/increase/models/card_payment.rb
Overview
Defined Under Namespace
Modules: Result
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, Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderAddress::Result
The address verification result returned to the card network.
Instance Method Summary collapse
-
#initialize(actual_line1: , actual_postal_code: , provided_line1: , provided_postal_code: , result: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see CardholderAddress for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(actual_line1: , actual_postal_code: , provided_line1: , provided_postal_code: , result: ) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderAddress for more details.
Cardholder address provided in the authorization request and the address on file we verified it against.
|
|
# File 'lib/increase/models/card_payment.rb', line 3143
|
Instance Attribute Details
#actual_line1 ⇒ String?
Line 1 of the address on file for the cardholder.
3115 |
# File 'lib/increase/models/card_payment.rb', line 3115 required :actual_line1, String, nil?: true |
#actual_postal_code ⇒ String?
The postal code of the address on file for the cardholder.
3121 |
# File 'lib/increase/models/card_payment.rb', line 3121 required :actual_postal_code, String, nil?: true |
#provided_line1 ⇒ String?
The cardholder address line 1 provided for verification in the authorization request.
3128 |
# File 'lib/increase/models/card_payment.rb', line 3128 required :provided_line1, String, nil?: true |
#provided_postal_code ⇒ String?
The postal code provided for verification in the authorization request.
3134 |
# File 'lib/increase/models/card_payment.rb', line 3134 required :provided_postal_code, String, nil?: true |
#result ⇒ Symbol, Increase::Models::CardPayment::Element::CardDecline::Verification::CardholderAddress::Result
The address verification result returned to the card network.
3140 3141 |
# File 'lib/increase/models/card_payment.rb', line 3140 required :result, enum: -> { Increase::CardPayment::Element::CardDecline::Verification::CardholderAddress::Result } |