* YOYO NEW API SPEC! * bump version Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * some fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes #128 Signed-off-by: Jess Frazelle <github@jessfraz.com> * mypy fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
71 lines
2.0 KiB
Python
71 lines
2.0 KiB
Python
from typing import Any, Dict, List, Type, TypeVar, Union, cast
|
|
|
|
import attr
|
|
|
|
from ..types import UNSET, Unset
|
|
|
|
TM = TypeVar("TM", bound="AsyncApiCallResultsPage")
|
|
|
|
|
|
@attr.s(auto_attribs=True)
|
|
class AsyncApiCallResultsPage:
|
|
"""A single page of results""" # noqa: E501
|
|
|
|
from ..models.async_api_call import 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[TM], src_dict: Dict[str, Any]) -> TM:
|
|
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
|