NotebookCell

case class NotebookCell(kind: NotebookCellKind, document: DocumentUri, metadata: Opt[LSPObject], executionSummary: Opt[ExecutionSummary])

A notebook cell.

A cell's document URI must be unique across ALL notebook cells and can therefore be used to uniquely identify a notebook cell or the cell's text document.

Value parameters:
document

The URI of the cell's text document content.

executionSummary

Additional execution summary information if supported by the client.

kind

The cell's kind

metadata

Additional metadata stored with the cell. Note: should always be an object literal (e.g. LSPObject)

Since:

3.17.0

Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product