Class: Lithic::Models::CardAuthorization::NameValidation
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::CardAuthorization::NameValidation
- Defined in:
- lib/lithic/models/card_authorization.rb
Overview
Defined Under Namespace
Classes: Name, NameOnFileMatch
Instance Attribute Summary collapse
-
#name ⇒ Lithic::Models::CardAuthorization::NameValidation::Name
Cardholder name as provided by the card network.
-
#name_on_file_match ⇒ Lithic::Models::CardAuthorization::NameValidation::NameOnFileMatch
Lithic’s computed match result comparing the network-provided name to the name on file.
Instance Method Summary collapse
-
#initialize(first:, last:, middle:) ⇒ Object
constructor
Cardholder name as provided by the card network.
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(first:, last:, middle:) ⇒ Object
Cardholder name as provided by the card network.
|
|
# File 'lib/lithic/models/card_authorization.rb', line 651
|
Instance Attribute Details
#name ⇒ Lithic::Models::CardAuthorization::NameValidation::Name
Cardholder name as provided by the card network.
642 |
# File 'lib/lithic/models/card_authorization.rb', line 642 required :name, -> { Lithic::CardAuthorization::NameValidation::Name } |
#name_on_file_match ⇒ Lithic::Models::CardAuthorization::NameValidation::NameOnFileMatch
Lithic’s computed match result comparing the network-provided name to the name on file.
649 |
# File 'lib/lithic/models/card_authorization.rb', line 649 required :name_on_file_match, -> { Lithic::CardAuthorization::NameValidation::NameOnFileMatch } |