Files
kittycad.py/kittycad/models/user_results_page.py

14 lines
229 B
Python
Raw Normal View History

from typing import List, Optional
from pydantic import BaseModel
from ..models.user import User
class UserResultsPage(BaseModel):
"""A single page of results"""
items: List[User]
next_page: Optional[str] = None