labapi.util.types.NotebookInit#

class labapi.util.types.NotebookInit(id: str, name: str, is_default: bool)[source]#

Bases: object

Represents the initial data required to set up a LabArchives notebook object.

This dataclass holds essential information such as the notebook’s ID, and name.

__init__(
id: str,
name: str,
is_default: bool,
) None#

Methods

__init__(id, name, is_default)

Attributes

id

The unique identifier of the notebook.

name

The name of the notebook.

is_default

A value indicating if this notebook is the user's default.

id: str#

The unique identifier of the notebook.

name: str#

The name of the notebook.

is_default: bool#

A value indicating if this notebook is the user’s default.