{- ORMOLU_DISABLE -} {- HLINT ignore -} -- THIS IS A GENERATED FILE, DO NOT EDIT {-# OPTIONS_GHC -Wno-unused-imports #-} {-# OPTIONS_GHC -Wno-unused-matches #-} {-# OPTIONS_GHC -Wno-deprecations #-} module Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells where import Control.DeepSeq import Data.Hashable import GHC.Generics import Language.LSP.Protocol.Utils.Misc import Prettyprinter import qualified Data.Aeson as Aeson import qualified Data.Row.Aeson as Aeson import qualified Data.Row.Hashable as Hashable import qualified Data.Text import qualified Language.LSP.Protocol.Internal.Types.NotebookCellLanguage import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter import qualified Language.LSP.Protocol.Types.Common {-| @since 3.18.0 @proposed -} data NotebookDocumentFilterWithCells = NotebookDocumentFilterWithCells { {-| The notebook to be synced If a string value is provided it matches against the notebook type. '*' matches every notebook. -} _notebook :: (Maybe (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter.NotebookDocumentFilter)) , {-| The cells of the matching notebook to be synced. -} _cells :: [Language.LSP.Protocol.Internal.Types.NotebookCellLanguage.NotebookCellLanguage] } deriving stock (Show, Eq, Ord, Generic) deriving anyclass (NFData, Hashable) deriving Pretty via (ViaJSON NotebookDocumentFilterWithCells) instance Aeson.ToJSON NotebookDocumentFilterWithCells where toJSON (NotebookDocumentFilterWithCells arg0 arg1) = Aeson.object $ concat $ ["notebook" Language.LSP.Protocol.Types.Common..=? arg0 ,["cells" Aeson..= arg1]] instance Aeson.FromJSON NotebookDocumentFilterWithCells where parseJSON = Aeson.withObject "NotebookDocumentFilterWithCells" $ \arg -> NotebookDocumentFilterWithCells <$> arg Language.LSP.Protocol.Types.Common..:!? "notebook" <*> arg Aeson..: "cells"