Interface NotebookCellDataDto

interface NotebookCellDataDto {
    cellKind: CellKind;
    internalMetadata?: NotebookCellInternalMetadata;
    language: string;
    metadata?: NotebookCellMetadata;
    outputs: NotebookOutputDto[];
    source: string;
}

Properties

cellKind: CellKind
internalMetadata?: NotebookCellInternalMetadata
language: string
metadata?: NotebookCellMetadata
source: string