Files
kittycad.py/kittycad/models/api_call_with_price_results_page.py

14 lines
280 B
Python
Raw Normal View History

from typing import List, Optional
from pydantic import BaseModel
from ..models.api_call_with_price import ApiCallWithPrice
class ApiCallWithPriceResultsPage(BaseModel):
"""A single page of results"""
items: List[ApiCallWithPrice]
next_page: Optional[str] = None