Increase.CardTokens.CardToken (Increase v1.0.0)

Copy Markdown View Source

Card Tokens represent a tokenized card number that can be used for Card Push Transfers and Card Validations.

Fields

  • id - The Card Token's identifier.
  • created_at - The ISO 8601 date and time at which the card token was created.
  • expiration_date - The ISO 8601 date when the card expires.
  • last4 - The last 4 digits of the card number.
  • length - The length of the card number.
  • prefix - The prefix of the card number, usually 8 digits.
  • type - A constant representing the object's type. For this resource it will always be card_token.

Summary

Types

t()

@type t() :: %Increase.CardTokens.CardToken{
  created_at: DateTime.t(),
  expiration_date: Date.t(),
  id: String.t(),
  last4: String.t(),
  length: integer(),
  prefix: String.t(),
  type: String.t()
}