Class: Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/lithic/models/digital_wallet_token_metadata.rb

Overview

Defined Under Namespace

Classes: AccountHolderData

Instance Attribute Summary collapse

Instance Method Summary collapse

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.

Parameters:

  • account_holder_data (Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo::AccountHolderData)

    Additional information that can be used to identify the account holder, such as

  • pan_unique_reference (String, nil) (defaults to: nil)

    Reference to the PAN that is unique per Wallet Provider

  • payment_account_reference (String, nil) (defaults to: nil)

    The unique account reference assigned to the PAN

  • token_unique_reference (String, nil) (defaults to: nil)

    A unique reference assigned following the allocation of a token used to identify



# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 82


Instance Attribute Details

#account_holder_dataLithic::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::::PaymentAccountInfo::AccountHolderData }

#pan_unique_referenceString?

Reference to the PAN that is unique per Wallet Provider

Returns:

  • (String, nil)


67
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 67

optional :pan_unique_reference, String, nil?: true

#payment_account_referenceString?

The unique account reference assigned to the PAN

Returns:

  • (String, nil)


73
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 73

optional :payment_account_reference, String, nil?: true

#token_unique_referenceString?

A unique reference assigned following the allocation of a token used to identify the token for the duration of its lifetime.

Returns:

  • (String, nil)


80
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 80

optional :token_unique_reference, String, nil?: true