2024-07-28 15:21:51 -07:00
|
|
|
from typing import List, Optional
|
2024-02-24 17:03:55 -08:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-02-24 17:03:55 -08:00
|
|
|
|
|
|
|
from ..models.org import Org
|
|
|
|
|
|
|
|
|
|
|
|
class OrgResultsPage(BaseModel):
|
|
|
|
"""A single page of results"""
|
|
|
|
|
|
|
|
items: List[Org]
|
|
|
|
|
|
|
|
next_page: Optional[str] = None
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|