Class: Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderAddress
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderAddress
- Defined in:
- lib/increase/models/real_time_decision.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::RealTimeDecision::CardAuthorization::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::RealTimeDecision::CardAuthorization::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/real_time_decision.rb', line 1461
|
Instance Attribute Details
#actual_line1 ⇒ String?
Line 1 of the address on file for the cardholder.
1433 |
# File 'lib/increase/models/real_time_decision.rb', line 1433 required :actual_line1, String, nil?: true |
#actual_postal_code ⇒ String?
The postal code of the address on file for the cardholder.
1439 |
# File 'lib/increase/models/real_time_decision.rb', line 1439 required :actual_postal_code, String, nil?: true |
#provided_line1 ⇒ String?
The cardholder address line 1 provided for verification in the authorization request.
1446 |
# File 'lib/increase/models/real_time_decision.rb', line 1446 required :provided_line1, String, nil?: true |
#provided_postal_code ⇒ String?
The postal code provided for verification in the authorization request.
1452 |
# File 'lib/increase/models/real_time_decision.rb', line 1452 required :provided_postal_code, String, nil?: true |
#result ⇒ Symbol, Increase::Models::RealTimeDecision::CardAuthorization::Verification::CardholderAddress::Result
The address verification result returned to the card network.
1458 1459 |
# File 'lib/increase/models/real_time_decision.rb', line 1458 required :result, enum: -> { Increase::RealTimeDecision::CardAuthorization::Verification::CardholderAddress::Result } |