Source code for nisystemlink.clients.notebook.models._query_notebook_response
from typing import List
from nisystemlink.clients.core._uplink._with_paging import WithPaging
from ._notebook_metadata import NotebookMetadata
[docs]class PagedNotebooks(WithPaging):
"""Model for a query notebooks response."""
notebooks: List[NotebookMetadata] | None = None
"""The list of notebooks."""