Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-09-29 16:05:40 -07:00
parent 31cd9e532d
commit 12c164620b
268 changed files with 22464 additions and 18287 deletions

View File

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