binance_api v0.1.3 Binance.OrderResponse

Struct for representing the result returned by GET /api/v3/allOrders, GET /api/v3/openOrders, GET /api/v3/order and POST /api/v3/order

defstruct [
  :client_order_id,
  :executed_qty,
  :order_id,
  :iceberg_qty,
  :is_working,
  :orig_qty,
  :price,
  :side,
  :status,
  :stop_price,
  :symbol,
  :time,
  :time_in_force,
  :transact_time,
  :type
]

Link to this section Summary

Link to this section Functions

Link to this function new(map_or_kwlist, opts \\ [])
new(ExConstructor.map_or_kwlist(), Keyword.t()) :: %Binance.OrderResponse{
  client_order_id: term(),
  executed_qty: term(),
  iceberg_qty: term(),
  is_working: term(),
  order_id: term(),
  orig_qty: term(),
  price: term(),
  side: term(),
  status: term(),
  stop_price: term(),
  symbol: term(),
  time: term(),
  time_in_force: term(),
  transact_time: term(),
  type: term()
}