lib/gen_lsp/protocol/structures/notebook_document_client_capabilities.ex

# codegen: do not edit
defmodule GenLSP.Structures.NotebookDocumentClientCapabilities do
  @moduledoc """
  Capabilities specific to the notebook document support.

  @since 3.17.0
  """

  import Schematic, warn: false

  use TypedStruct

  @doc """
  ## Fields

  * synchronization: Capabilities specific to notebook document synchronization

    @since 3.17.0
  """
  @derive Jason.Encoder
  typedstruct do
    field :synchronization, GenLSP.Structures.NotebookDocumentSyncClientCapabilities.t(),
      enforce: true
  end

  @doc false
  @spec schematic() :: Schematic.t()
  def schematic() do
    schema(__MODULE__, %{
      {"synchronization", :synchronization} =>
        GenLSP.Structures.NotebookDocumentSyncClientCapabilities.schematic()
    })
  end
end