Current section

Files

Jump to
opencode_sdk lib opencode generated agent_v2_info_request.ex
Raw

lib/opencode/generated/agent_v2_info_request.ex

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