Source code for nisystemlink.clients.test_plan.models._paged_test_plan_templates

from typing import List

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

from ._test_plan_templates import TestPlanTemplate


[docs]class PagedTestPlanTemplates(WithPaging): """The response containing the list of products, total count of products and the continuation token if applicable. """ test_plan_templates: List[TestPlanTemplate] """A list of all the products in this page.""" total_count: int | None = None """The total number of products that match the query."""