Class: Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo
- Defined in:
- lib/lithic/models/digital_wallet_token_metadata.rb
Overview
Defined Under Namespace
Classes: AccountHolderData
Instance Attribute Summary collapse
-
#account_holder_data ⇒ Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo::AccountHolderData
Additional information that can be used to identify the account holder, such as name, address, etc.
-
#pan_unique_reference ⇒ String?
Reference to the PAN that is unique per Wallet Provider.
-
#payment_account_reference ⇒ String?
The unique account reference assigned to the PAN.
-
#token_unique_reference ⇒ String?
A unique reference assigned following the allocation of a token used to identify the token for the duration of its lifetime.
Instance Method Summary collapse
-
#initialize(account_holder_data:, pan_unique_reference: nil, payment_account_reference: nil, token_unique_reference: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see PaymentAccountInfo 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(account_holder_data:, pan_unique_reference: nil, payment_account_reference: nil, token_unique_reference: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo for more details.
Contains the information of the account responsible for the payment.
|
|
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 82
|
Instance Attribute Details
#account_holder_data ⇒ Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo::AccountHolderData
Additional information that can be used to identify the account holder, such as name, address, etc
60 61 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 60 required :account_holder_data, -> { Lithic::DigitalWalletTokenMetadata::PaymentAccountInfo::AccountHolderData } |
#pan_unique_reference ⇒ String?
Reference to the PAN that is unique per Wallet Provider
67 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 67 optional :pan_unique_reference, String, nil?: true |
#payment_account_reference ⇒ String?
The unique account reference assigned to the PAN
73 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 73 optional :payment_account_reference, String, nil?: true |
#token_unique_reference ⇒ String?
A unique reference assigned following the allocation of a token used to identify the token for the duration of its lifetime.
80 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 80 optional :token_unique_reference, String, nil?: true |