14 lines
251 B
Python
14 lines
251 B
Python
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from ..models.text_to_cad import TextToCad
|
|
|
|
|
|
class TextToCadResultsPage(BaseModel):
|
|
"""A single page of results"""
|
|
|
|
items: List[TextToCad]
|
|
|
|
next_page: Optional[str] = None
|