Packages

VanwaTech API library

Retired package: Deprecated - No longer being maintained

Current section

Files

Jump to
vanwatech lib vanwa_tech error.ex
Raw

lib/vanwa_tech/error.ex

defmodule VanwaTech.Error do
@moduledoc """
Represents an error returned by the API.
"""
@type t :: %__MODULE__{status: String.t(), data: String.t()}
defstruct status: "", data: ""
end