Source code for nisystemlink.clients.dataframe.models._paged_tables

from typing import List

from nisystemlink.clients.core._uplink._with_paging import WithPaging

from ._table_metadata import TableMetadata


[docs]class PagedTables(WithPaging): """The response for a table query containing the matched tables.""" tables: List[TableMetadata] """The list of tables returned by the query."""