Class: Lithic::Models::TokenizationSimulateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::TokenizationSimulateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/lithic/models/tokenization_simulate_params.rb
Overview
Defined Under Namespace
Modules: TokenizationSource, WalletRecommendedDecision
Instance Attribute Summary collapse
-
#account_score ⇒ Integer?
The account score (1-5) that represents how the Digital Wallet’s view on how reputable an end user’s account is.
-
#cvv ⇒ String
The three digit cvv for the card.
-
#device_score ⇒ Integer?
The device score (1-5) that represents how the Digital Wallet’s view on how reputable an end user’s device is.
-
#entity ⇒ String?
Optional field to specify the token requestor name for a merchant token simulation.
-
#expiration_date ⇒ String
The expiration date of the card in ‘MM/YY’ format.
-
#pan ⇒ String
The sixteen digit card number.
-
#tokenization_source ⇒ Symbol, Lithic::Models::TokenizationSimulateParams::TokenizationSource
The source of the tokenization request.
-
#wallet_recommended_decision ⇒ Symbol, ...
The decision that the Digital Wallet’s recommend.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(cvv:, expiration_date:, pan:, tokenization_source:, account_score: nil, device_score: nil, entity: nil, wallet_recommended_decision: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see TokenizationSimulateParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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(cvv:, expiration_date:, pan:, tokenization_source:, account_score: nil, device_score: nil, entity: nil, wallet_recommended_decision: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::TokenizationSimulateParams for more details.
|
|
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 62
|
Instance Attribute Details
#account_score ⇒ Integer?
The account score (1-5) that represents how the Digital Wallet’s view on how reputable an end user’s account is.
39 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 39 optional :account_score, Integer |
#cvv ⇒ String
The three digit cvv for the card.
14 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 14 required :cvv, String |
#device_score ⇒ Integer?
The device score (1-5) that represents how the Digital Wallet’s view on how reputable an end user’s device is.
46 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 46 optional :device_score, Integer |
#entity ⇒ String?
Optional field to specify the token requestor name for a merchant token simulation. Ignored when tokenization_source is not MERCHANT.
53 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 53 optional :entity, String |
#expiration_date ⇒ String
The expiration date of the card in ‘MM/YY’ format.
20 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 20 required :expiration_date, String |
#pan ⇒ String
The sixteen digit card number.
26 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 26 required :pan, String |
#tokenization_source ⇒ Symbol, Lithic::Models::TokenizationSimulateParams::TokenizationSource
The source of the tokenization request.
32 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 32 required :tokenization_source, enum: -> { Lithic::TokenizationSimulateParams::TokenizationSource } |
#wallet_recommended_decision ⇒ Symbol, ...
The decision that the Digital Wallet’s recommend
59 60 |
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 59 optional :wallet_recommended_decision, enum: -> { Lithic::TokenizationSimulateParams::WalletRecommendedDecision } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/lithic/models/tokenization_simulate_params.rb', line 93
|