Current section

Files

Jump to
dwarves_binancex lib binance order_book.ex
Raw

lib/binance/order_book.ex

defmodule Binance.OrderBook do
@moduledoc """
Struct for representing the result returned by /api/v1/depth
"""
defstruct [:bids, :asks, :last_update_id]
use ExConstructor
end