defmodule TehamaClient.Auth do @moduledoc """ A struct representing the API authentication. """ use TypedStruct typedstruct do @typedoc "A typed struct" field(:token, String.t()) end end