Current section

Files

Jump to
opencode_sdk lib opencode generated event_mcp_browser_open_failed_properties.ex
Raw

lib/opencode/generated/event_mcp_browser_open_failed_properties.ex

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