lib/tehama_client/objects/auth.ex
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
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