Interface AutoTestRedactedRunInNotebookStepOutput

Create a code cell and run it as if it is part of the notebook. It will not be part of the notebook the student will use (redacted).

interface AutoTestRedactedRunInNotebookStepOutput {
    cellContent: AutoTestRedactedString;
    description: AutoTestDescription;
    id: string;
    insertMethod?: AutoTestRedactedRunInNotebookInsertMethod;
    name: string;
    targetCellId?: AutoTestRedactedString;
}

Properties

The content of the cell.

description: AutoTestDescription

The description of this step.

id: string

The id of this step.

Method to insert a new cell into the new book.

name: string

The name of this step.

targetCellId?: AutoTestRedactedString

The id of the existing cell in template notebook to add grading cell for.