Packages

Elixir SDK for the Appwrite backend-as-a-service platform. Covers Auth, Databases, TablesDB, Storage, Functions, Sites, Tokens, Teams, Messaging, GraphQL, and more.

Current section

Files

Jump to
appwrite lib appwrite types jwt.ex
Raw

lib/appwrite/types/jwt.ex

defmodule Appwrite.Types.Jwt do
@moduledoc """
Represents a JWT token.
## Fields
- `jwt` (`String.t`): JWT encoded string.
"""
@type t :: %__MODULE__{
jwt: String.t()
}
defstruct [:jwt]
end