16 lines
331 B
Python
16 lines
331 B
Python
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.async_api_call import AsyncApiCall
|
|
|
|
|
|
class AsyncApiCallResultsPage(BaseModel):
|
|
"""A single page of results"""
|
|
|
|
items: List[AsyncApiCall]
|
|
|
|
next_page: Optional[str] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|