switch to pydantic

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 23:50:50 -08:00
parent d9d73522fd
commit bc3d698539
230 changed files with 4467 additions and 25280 deletions

View File

@ -1,70 +1,13 @@
from typing import Any, Dict, List, Type, TypeVar, Union, cast
from typing import List, Optional
import attr
from pydantic import BaseModel
from ..types import UNSET, Unset
CE = TypeVar("CE", bound="AsyncApiCallResultsPage")
from ..models.async_api_call import AsyncApiCall
@attr.s(auto_attribs=True)
class AsyncApiCallResultsPage:
"""A single page of results""" # noqa: E501
class AsyncApiCallResultsPage(BaseModel):
"""A single page of results"""
from ..models.async_api_call import AsyncApiCall
items: List[AsyncApiCall]
items: Union[Unset, List[AsyncApiCall]] = UNSET
next_page: Union[Unset, str] = UNSET
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
def to_dict(self) -> Dict[str, Any]:
from ..models.async_api_call import AsyncApiCall
items: Union[Unset, List[AsyncApiCall]] = UNSET
if not isinstance(self.items, Unset):
items = self.items
next_page = self.next_page
field_dict: Dict[str, Any] = {}
field_dict.update(self.additional_properties)
field_dict.update({})
if items is not UNSET:
field_dict["items"] = items
if next_page is not UNSET:
field_dict["next_page"] = next_page
return field_dict
@classmethod
def from_dict(cls: Type[CE], src_dict: Dict[str, Any]) -> CE:
d = src_dict.copy()
from ..models.async_api_call import AsyncApiCall
items = cast(List[AsyncApiCall], d.pop("items", UNSET))
next_page = d.pop("next_page", UNSET)
async_api_call_results_page = cls(
items=items,
next_page=next_page,
)
async_api_call_results_page.additional_properties = d
return async_api_call_results_page
@property
def additional_keys(self) -> List[str]:
return list(self.additional_properties.keys())
def __getitem__(self, key: str) -> Any:
return self.additional_properties[key]
def __setitem__(self, key: str, value: Any) -> None:
self.additional_properties[key] = value
def __delitem__(self, key: str) -> None:
del self.additional_properties[key]
def __contains__(self, key: str) -> bool:
return key in self.additional_properties
next_page: Optional[str] = None