2023-11-28 23:50:50 -08:00
|
|
|
from typing import List, Optional
|
2023-10-17 15:35:56 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2023-10-17 15:35:56 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from ..models.text_to_cad import TextToCad
|
2023-10-17 15:35:56 -07:00
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class TextToCadResultsPage(BaseModel):
|
|
|
|
"""A single page of results"""
|
2023-10-17 15:35:56 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
items: List[TextToCad]
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
next_page: Optional[str] = None
|