Source code for kittycad.models.api_call_with_price_results_page

from typing import List, Optional

from pydantic import BaseModel, ConfigDict

from ..models.api_call_with_price import ApiCallWithPrice


[docs] class ApiCallWithPriceResultsPage(BaseModel): """A single page of results""" items: List[ApiCallWithPrice] next_page: Optional[str] = None model_config = ConfigDict(protected_namespaces=())