lib/gen_lsp/protocol/structures/moniker_client_capabilities.ex
# codegen: do not edit
defmodule GenLSP.Structures.MonikerClientCapabilities do
@moduledoc """
Client capabilities specific to the moniker request.
@since 3.16.0
"""
import Schematic, warn: false
use TypedStruct
@doc """
## Fields
* dynamic_registration: Whether moniker supports dynamic registration. If this is set to `true`
the client supports the new `MonikerRegistrationOptions` return value
for the corresponding server capability as well.
"""
@derive Jason.Encoder
typedstruct do
field :dynamic_registration, boolean()
end
@doc false
@spec schematic() :: Schematic.t()
def schematic() do
schema(__MODULE__, %{
optional({"dynamicRegistration", :dynamic_registration}) => bool()
})
end
end