View Source Appwrite.Types.Token (appwrite v0.1.7)

Represents a token in the Appwrite system.

Fields

  • id (String.t): Token ID.
  • created_at (String.t): Creation date in ISO 8601 format.
  • Other fields describe the secret, expiration, and security phrase.

Summary

Types

@type t() :: %Appwrite.Types.Token{
  created_at: String.t(),
  expire: String.t(),
  id: String.t(),
  phrase: String.t(),
  secret: String.t(),
  user_id: String.t()
}