Class: Increase::Models::RealTimeDecisionActionParams

Inherits:
Internal::Type::BaseModel show all
Extended by:
Internal::Type::RequestParameters::Converter
Includes:
Internal::Type::RequestParameters
Defined in:
lib/increase/models/real_time_decision_action_params.rb

Overview

Defined Under Namespace

Classes: CardAuthentication, CardAuthenticationChallenge, CardAuthorization, DigitalWalletAuthentication, DigitalWalletToken

Instance Attribute Summary collapse

Attributes included from Internal::Type::RequestParameters

#request_options

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Internal::Type::RequestParameters::Converter

dump_request

Methods included from Internal::Type::RequestParameters

included

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(email: nil, phone: nil) ⇒ Object

Some parameter documentations has been truncated, see Increase::Models::RealTimeDecisionActionParams::DigitalWalletAuthentication::Success for more details.

If your application was able to deliver the one-time passcode, this contains metadata about the delivery. Exactly one of ‘phone` or `email` must be provided.

Parameters:

  • email (String) (defaults to: nil)

    The email address that was used to verify the cardholder via one-time passcode.

  • phone (String) (defaults to: nil)

    The phone number that was used to verify the cardholder via one-time passcode ov



# File 'lib/increase/models/real_time_decision_action_params.rb', line 380


Instance Attribute Details

#card_authenticationIncrease::Models::RealTimeDecisionActionParams::CardAuthentication?

If the Real-Time Decision relates to a 3DS card authentication attempt, this object contains your response to the authentication.



15
# File 'lib/increase/models/real_time_decision_action_params.rb', line 15

optional :card_authentication, -> { Increase::RealTimeDecisionActionParams::CardAuthentication }

#card_authentication_challengeIncrease::Models::RealTimeDecisionActionParams::CardAuthenticationChallenge?

If the Real-Time Decision relates to 3DS card authentication challenge delivery, this object contains your response.



22
23
# File 'lib/increase/models/real_time_decision_action_params.rb', line 22

optional :card_authentication_challenge,
-> { Increase::RealTimeDecisionActionParams::CardAuthenticationChallenge }

#card_authorizationIncrease::Models::RealTimeDecisionActionParams::CardAuthorization?

If the Real-Time Decision relates to a card authorization attempt, this object contains your response to the authorization.



30
# File 'lib/increase/models/real_time_decision_action_params.rb', line 30

optional :card_authorization, -> { Increase::RealTimeDecisionActionParams::CardAuthorization }

#digital_wallet_authenticationIncrease::Models::RealTimeDecisionActionParams::DigitalWalletAuthentication?

If the Real-Time Decision relates to a digital wallet authentication attempt, this object contains your response to the authentication.



37
38
# File 'lib/increase/models/real_time_decision_action_params.rb', line 37

optional :digital_wallet_authentication,
-> { Increase::RealTimeDecisionActionParams::DigitalWalletAuthentication }

#digital_wallet_tokenIncrease::Models::RealTimeDecisionActionParams::DigitalWalletToken?

If the Real-Time Decision relates to a digital wallet token provisioning attempt, this object contains your response to the attempt.



45
# File 'lib/increase/models/real_time_decision_action_params.rb', line 45

optional :digital_wallet_token, -> { Increase::RealTimeDecisionActionParams::DigitalWalletToken }

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/increase/models/real_time_decision_action_params.rb', line 91