Current section

Files

Jump to
opencode_sdk lib opencode generated model_v2_info_variants.ex
Raw

lib/opencode/generated/model_v2_info_variants.ex

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