Source code for nisystemlink.clients.notebook.models._query_notebook_response
from typing import List, Optional
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: Optional[List[NotebookMetadata]] = None
"""The list of notebooks."""