Current section

Files

Jump to
opencode_sdk lib opencode generated event_project_updated_properties_icon.ex
Raw

lib/opencode/generated/event_project_updated_properties_icon.ex

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