Current section

Files

Jump to
opencode_sdk lib opencode generated message_aborted_error_data.ex
Raw

lib/opencode/generated/message_aborted_error_data.ex

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