2023-11-28 23:50:50 -08:00
|
|
|
from typing import List, Optional
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from ..models.ai_prompt import AiPrompt
|
2023-11-27 16:01:20 -08:00
|
|
|
|
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class AiPromptResultsPage(BaseModel):
|
|
|
|
"""A single page of results"""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
items: List[AiPrompt]
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
next_page: Optional[str] = None
|