15
kittycad/models/org_results_page.py
Normal file
15
kittycad/models/org_results_page.py
Normal file
@ -0,0 +1,15 @@
|
||||
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=())
|
Reference in New Issue
Block a user