Increase.RealTimeDecisions.RealTimeDecision.DigitalWalletAuthentication (Increase v1.0.0)

Copy Markdown View Source

Fields related to a digital wallet authentication attempt.

Fields

  • card_id - The identifier of the Card that is being tokenized.
  • channel - The channel to send the card user their one-time passcode.
  • digital_wallet - The digital wallet app being used.
  • email - The email to send the one-time passcode to if channel is equal to email.
  • one_time_passcode - The one-time passcode to send the card user.
  • phone - The phone number to send the one-time passcode to if channel is equal to sms.
  • result - Whether your application successfully delivered the one-time passcode.

Summary

Types

t()

@type t() :: %Increase.RealTimeDecisions.RealTimeDecision.DigitalWalletAuthentication{
  card_id: String.t(),
  channel: String.t(),
  digital_wallet: String.t(),
  email: String.t() | nil,
  one_time_passcode: String.t(),
  phone: String.t() | nil,
  result: String.t() | nil
}