Source code for kittycad.models.async_api_call_results_page

from typing import List, Optional

from pydantic import BaseModel

from ..models.async_api_call import AsyncApiCall


[docs]class AsyncApiCallResultsPage(BaseModel): """A single page of results""" items: List[AsyncApiCall] next_page: Optional[str] = None