Source code for nisystemlink.clients.testmonitor.models._paged_results
from typing import List, Optional
from nisystemlink.clients.core._uplink._with_paging import WithPaging
from nisystemlink.clients.testmonitor.models import Result
[docs]class PagedResults(WithPaging):
"""The response for a Results query containing matched results."""
results: List[Result]
"""A list of all the results in this page."""
total_count: Optional[int]
"""The total number of results that match the query."""