Current section

Files

Jump to
opencode_sdk lib opencode generated event_session_idle_properties.ex
Raw

lib/opencode/generated/event_session_idle_properties.ex

defmodule OpenCode.Generated.EventSessionIdleProperties do
@moduledoc """
Provides struct and type for a EventSessionIdleProperties
"""
@type t :: %__MODULE__{session_id: String.t()}
defstruct [:session_id]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[session_id: :string]
end
end