Class: Lithic::Models::DigitalWalletTokenMetadata
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::DigitalWalletTokenMetadata
- Defined in:
- lib/lithic/models/digital_wallet_token_metadata.rb
Defined Under Namespace
Modules: TokenRequestorName Classes: PaymentAccountInfo
Instance Attribute Summary collapse
-
#payment_account_info ⇒ Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo
Contains the information of the account responsible for the payment.
-
#payment_app_instance_id ⇒ String?
The identifier of the Payment App instance within a device that will be provisioned with a token.
-
#status ⇒ String
The current status of the digital wallet token.
-
#token_requestor_id ⇒ String?
The party that requested the digitization.
-
#token_requestor_name ⇒ Symbol, ...
Human-readable name of the wallet that the token_requestor_id maps to.
Instance Method Summary collapse
-
#initialize(phone_number: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see PaymentAccountInfo::AccountHolderData 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(phone_number: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo::AccountHolderData for more details.
Additional information that can be used to identify the account holder, such as name, address, etc
|
|
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 37
|
Instance Attribute Details
#payment_account_info ⇒ Lithic::Models::DigitalWalletTokenMetadata::PaymentAccountInfo
Contains the information of the account responsible for the payment.
10 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 10 required :payment_account_info, -> { Lithic::DigitalWalletTokenMetadata::PaymentAccountInfo } |
#payment_app_instance_id ⇒ String?
The identifier of the Payment App instance within a device that will be provisioned with a token
23 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 23 optional :payment_app_instance_id, String, nil?: true |
#status ⇒ String
The current status of the digital wallet token. Pending or declined.
16 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 16 required :status, String |
#token_requestor_id ⇒ String?
The party that requested the digitization
29 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 29 optional :token_requestor_id, String |
#token_requestor_name ⇒ Symbol, ...
Human-readable name of the wallet that the token_requestor_id maps to.
35 |
# File 'lib/lithic/models/digital_wallet_token_metadata.rb', line 35 optional :token_requestor_name, enum: -> { Lithic::DigitalWalletTokenMetadata::TokenRequestorName } |