Appwrite.Types.Client.Config (appwrite v1.0.0)

View Source

Type alias for the Appwrite client configuration map.

Represents a flat map of string configuration keys to string values, used to store settings such as the project ID, endpoint, and custom headers that are applied to every API request.

Example

%{
  "project"  => "my-project-id",
  "endpoint" => "https://cloud.appwrite.io/v1",
  "x-sdk-name" => "Elixir"
}

Summary

Types

t()

@type t() :: %{required(String.t()) => String.t()}