The session model returned by the server.

Notes

See the Jupyter Server API.

interface IModel {
    id: string;
    kernel: null | Kernel.IModel;
    name: string;
    path: string;
    type: string;
}

Properties

Properties

id: string

The unique identifier for the session client.

kernel: null | Kernel.IModel
name: string
path: string
type: string