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 algosha.ex
Raw

lib/appwrite/types/algosha.ex

defmodule Appwrite.Types.AlgoSha do
@moduledoc """
Represents the SHA hashing algorithm.
## Fields
- `type` (`String.t`): Algorithm type.
"""
@type t :: %__MODULE__{
type: String.t()
}
defstruct [:type]
end