A notebook version entity in a project.

interface NotebookVersionEntityInProject {
    created_by_iui?: string;
    file_reference?: string;
    master_notebook_guid?: string;
    project_id: string;
    rev_id?: number;
}

Properties

created_by_iui?: string

The IUI of the user that has created the version.

file_reference?: string

The file reference in the corresponding COS.

master_notebook_guid?: string

The guid of the versioned notebook.

project_id: string

The guid of the project.

rev_id?: number

The revision id of the notebook.