Packages

Finnhub API (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Current section

Files

Jump to
finnhub_api lib finnhub_api model forex_candles.ex
Raw

lib/finnhub_api/model/forex_candles.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.3.0-SNAPSHOT (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule FinnhubAPI.Model.ForexCandles do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:o,
:h,
:l,
:c,
:v,
:t,
:s
]
@type t :: %__MODULE__{
:o => [float()] | nil,
:h => [float()] | nil,
:l => [float()] | nil,
:c => [float()] | nil,
:v => [float()] | nil,
:t => [float()] | nil,
:s => String.t() | nil
}
def decode(value) do
value
end
end