Packages

VanwaTech API library

Retired package: Deprecated - No longer being maintained

Current section

Files

Jump to
vanwatech lib vanwa_tech response.ex
Raw

lib/vanwa_tech/response.ex

defmodule VanwaTech.Response do
@moduledoc """
Represents a response returned by the API.
"""
@type t :: %__MODULE__{status: String.t(), data: map() | String.t()}
defstruct status: "", data: %{}
end