Current section

Files

Jump to
opencode_sdk lib opencode generated session_v2_info_tokens_cache.ex
Raw

lib/opencode/generated/session_v2_info_tokens_cache.ex

defmodule OpenCode.Generated.SessionV2InfoTokensCache do
@moduledoc """
Provides struct and type for a SessionV2InfoTokensCache
"""
@type t :: %__MODULE__{read: number, write: number}
defstruct [:read, :write]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[read: :number, write: :number]
end
end