16 lines
293 B
Python
16 lines
293 B
Python
![]() |
from typing import List, Optional
|
||
|
|
||
|
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
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=())
|