Increase.DigitalWalletTokens.DigitalWalletToken (Increase v1.0.0)

Copy Markdown View Source

A Digital Wallet Token is created when a user adds a Card to their Apple Pay or Google Pay app. The Digital Wallet Token can be used for purchases just like a Card.

Fields

  • id - The Digital Wallet Token identifier.
  • card_id - The identifier for the Card this Digital Wallet Token belongs to.
  • cardholder - The cardholder information given when the Digital Wallet Token was created.
  • created_at - The ISO 8601 date and time at which the Digital Wallet Token was created.
  • decline - If the Digital Wallet Token was declined during provisioning, details about the decline.
  • device - The device that was used to create the Digital Wallet Token.
  • dynamic_primary_account_number - The redacted Dynamic Primary Account Number.
  • status - This indicates if payments can be made with the Digital Wallet Token.
  • token_requestor - The digital wallet app being used.
  • type - A constant representing the object's type. For this resource it will always be digital_wallet_token.
  • updates - Updates to the Digital Wallet Token.

Summary

Types

t()

@type t() :: %Increase.DigitalWalletTokens.DigitalWalletToken{
  card_id: String.t(),
  cardholder: Increase.DigitalWalletTokens.DigitalWalletToken.Cardholder.t(),
  created_at: DateTime.t(),
  decline: Increase.DigitalWalletTokens.DigitalWalletToken.Decline.t() | nil,
  device: Increase.DigitalWalletTokens.DigitalWalletToken.Device.t(),
  dynamic_primary_account_number:
    Increase.DigitalWalletTokens.DigitalWalletToken.DynamicPrimaryAccountNumber.t()
    | nil,
  id: String.t(),
  status: String.t(),
  token_requestor: String.t(),
  type: String.t(),
  updates: [Increase.DigitalWalletTokens.DigitalWalletToken.Update.t()]
}