lib/runbox/scenario/simple/config.ex
defmodule Runbox.Scenario.Simple.Config do
@moduledoc """
Simple scenario configuration struct.
This struct is passed to the scenario when it is started. It contains the following fields:
* `start_from` - integer, ms from epoch, from when is run started to read data
"""
defstruct [:start_from]
@typedoc """
Scenario configuration passed to the scenario when it is started.
See moduledoc for more information.
"""
@type t :: %__MODULE__{
start_from: non_neg_integer()
}
end