Packages

Elixir wrapper for the Binance futures public API

Current section

Files

Jump to
dwarves_binance lib binance order_response.ex
Raw

lib/binance/order_response.ex

defmodule Binance.OrderResponse do
defstruct [
:client_order_id,
:executed_qty,
:order_id,
:orig_qty,
:price,
:side,
:status,
:symbol,
:time_in_force,
:transact_time,
:type
]
use ExConstructor
end