Current section

Files

Jump to
opencode_sdk lib opencode generated question_v2_tool.ex
Raw

lib/opencode/generated/question_v2_tool.ex

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