lib/gen_lsp/protocol/structures/inline_value_options.ex
# codegen: do not edit
defmodule GenLSP.Structures.InlineValueOptions do
@moduledoc """
Inline value options used during static registration.
@since 3.17.0
"""
import Schematic, warn: false
use TypedStruct
@doc """
## Fields
* work_done_progress
"""
@derive Jason.Encoder
typedstruct do
field :work_done_progress, boolean()
end
@doc false
@spec schematic() :: Schematic.t()
def schematic() do
schema(__MODULE__, %{
optional({"workDoneProgress", :work_done_progress}) => bool()
})
end
end