Source code for kittycad.models.user_results_page
from typing import List, Optional
from pydantic import BaseModel, ConfigDict
from ..models.user import User
[docs]
class UserResultsPage(BaseModel):
"""A single page of results"""
items: List[User]
next_page: Optional[str] = None
model_config = ConfigDict(protected_namespaces=())