14 lines
229 B
Python
14 lines
229 B
Python
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
|