Packages

Elixir wrapper for the Binance futures public API

Current section

Files

Jump to
dwarves_binance lib binance exchange_info.ex
Raw

lib/binance/exchange_info.ex

defmodule Binance.ExchangeInfo do
@moduledoc """
Struct for representing the result returned by /api/v1/exchangeInfo
"""
defstruct [
:timezone,
:server_time,
:rate_limits,
:exchange_filters,
:symbols
]
use ExConstructor
end