Current section

Files

Jump to
dwarves_binancex lib binance symbol_price.ex
Raw

lib/binance/symbol_price.ex

defmodule Binance.SymbolPrice do
@moduledoc """
Struct for representing a result row as returned by /api/v1/ticker/allPrices
```
defstruct [:symbol, :price]
```
"""
defstruct [:symbol, :price]
use ExConstructor
end