lib/ex_vcom/model/simulation_value.ex

# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.

defmodule ExVcom.Model.SimulationValue do
  @moduledoc """

  """

  @derive [Poison.Encoder]
  defstruct [
    :timestamp,
    :max,
    :min,
    :expected
  ]

  @type t :: %__MODULE__{
          :timestamp => DateTime.t() | nil,
          :max => float() | nil,
          :min => float() | nil,
          :expected => float() | nil
        }
end

defimpl Poison.Decoder, for: ExVcom.Model.SimulationValue do
  def decode(value, _options) do
    value
  end
end