Current section

Files

Jump to
ex_oura lib client multi_document_response_daily_readiness_model.ex
Raw

lib/client/multi_document_response_daily_readiness_model.ex

defmodule ExOura.Client.MultiDocumentResponseDailyReadinessModel do
@moduledoc """
Provides struct and type for a MultiDocumentResponseDailyReadinessModel
"""
@type t :: %__MODULE__{
data: [ExOura.Client.DailyReadinessModel.t()],
next_token: String.t() | nil
}
defstruct [:data, :next_token]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[
data: [{ExOura.Client.DailyReadinessModel, :t}],
next_token: {:union, [{:string, :generic}, :null]}
]
end
end