Current section
Files
Jump to
Current section
Files
lib/ex_ftx/market_info.ex
defmodule ExFtx.MarketInfo do
alias __MODULE__
@type t :: %MarketInfo{
coin: String.t(),
borrowed: number,
free: number,
estimated_rate: number,
previous_rate: number
}
defstruct ~w[
coin
borrowed
free
estimated_rate
previous_rate
]a
end