Files
kittycad.py/kittycad/models/ml_prompt_results_page.py
zoo-github-actions-auth[bot] d724c8e706 Update api spec (#256)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-08-22 14:11:23 -07:00

16 lines
314 B
Python

from typing import List, Optional
from pydantic import BaseModel, ConfigDict
from ..models.ml_prompt import MlPrompt
class MlPromptResultsPage(BaseModel):
"""A single page of results"""
items: List[MlPrompt]
next_page: Optional[str] = None
model_config = ConfigDict(protected_namespaces=())