Interface ExecuteEditorDocumentJupyterCellRequest

interface ExecuteEditorDocumentJupyterCellRequest {
    cellId: string;
    code: string;
    documentId: string;
}

Hierarchy (View Summary)

Properties

cellId: string

The id of the cell to execute code in, this field may not be the empty string.

code: string

The code to execute in the cell. Limited to 31KB to ensure it fits within SAFE host limits.

documentId: string

The id of the notebook document.