Update api spec (#162)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Jess Frazelle
2023-11-27 16:01:20 -08:00
committed by GitHub
parent 4f29f55190
commit 6b2fe3decb
287 changed files with 22901 additions and 24513 deletions

View File

@ -4,63 +4,67 @@ import attr
from ..types import UNSET, Unset
AH = TypeVar("AH", bound="AsyncApiCallResultsPage")
JR = TypeVar("JR", 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
"""A single page of results""" # noqa: E501
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
from ..models.async_api_call import AsyncApiCall
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
items: Union[Unset, List[AsyncApiCall]] = UNSET
next_page: Union[Unset, str] = UNSET
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
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
return field_dict
def to_dict(self) -> Dict[str, Any]:
from ..models.async_api_call import AsyncApiCall
@classmethod
def from_dict(cls: Type[AH], src_dict: Dict[str, Any]) -> AH:
d = src_dict.copy()
from ..models.async_api_call import AsyncApiCall
items = cast(List[AsyncApiCall], d.pop("items", UNSET))
items: Union[Unset, List[AsyncApiCall]] = UNSET
if not isinstance(self.items, Unset):
items = self.items
next_page = self.next_page
next_page = d.pop("next_page", UNSET)
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
async_api_call_results_page = cls(
items= items,
next_page= next_page,
)
@classmethod
def from_dict(cls: Type[JR], src_dict: Dict[str, Any]) -> JR:
d = src_dict.copy()
from ..models.async_api_call import AsyncApiCall
async_api_call_results_page.additional_properties = d
return async_api_call_results_page
items = cast(List[AsyncApiCall], d.pop("items", UNSET))
@property
def additional_keys(self) -> List[str]:
return list(self.additional_properties.keys())
next_page = d.pop("next_page", UNSET)
def __getitem__(self, key: str) -> Any:
return self.additional_properties[key]
async_api_call_results_page = cls(
items=items,
next_page=next_page,
)
def __setitem__(self, key: str, value: Any) -> None:
self.additional_properties[key] = value
async_api_call_results_page.additional_properties = d
return async_api_call_results_page
def __delitem__(self, key: str) -> None:
del self.additional_properties[key]
@property
def additional_keys(self) -> List[str]:
return list(self.additional_properties.keys())
def __contains__(self, key: str) -> bool:
return key in self.additional_properties
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