84 lines
2.2 KiB
Python
84 lines
2.2 KiB
Python
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar, Union
|
|
|
|
import attr
|
|
|
|
from ..types import UNSET, Unset
|
|
|
|
if TYPE_CHECKING:
|
|
from ..models.video_search import VideoSearch
|
|
|
|
|
|
T = TypeVar("T", bound="SearchResultsVideo")
|
|
|
|
|
|
@attr.s(auto_attribs=True)
|
|
class SearchResultsVideo:
|
|
"""
|
|
Attributes:
|
|
results (List['VideoSearch']):
|
|
next_page (Union[Unset, str]):
|
|
"""
|
|
|
|
results: List["VideoSearch"]
|
|
next_page: Union[Unset, str] = UNSET
|
|
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
|
|
|
|
def to_dict(self) -> Dict[str, Any]:
|
|
results = []
|
|
for results_item_data in self.results:
|
|
results_item = results_item_data.to_dict()
|
|
|
|
results.append(results_item)
|
|
|
|
next_page = self.next_page
|
|
|
|
field_dict: Dict[str, Any] = {}
|
|
field_dict.update(self.additional_properties)
|
|
field_dict.update(
|
|
{
|
|
"results": results,
|
|
}
|
|
)
|
|
if next_page is not UNSET:
|
|
field_dict["next_page"] = next_page
|
|
|
|
return field_dict
|
|
|
|
@classmethod
|
|
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
from ..models.video_search import VideoSearch
|
|
|
|
d = src_dict.copy()
|
|
results = []
|
|
_results = d.pop("results")
|
|
for results_item_data in _results:
|
|
results_item = VideoSearch.from_dict(results_item_data)
|
|
|
|
results.append(results_item)
|
|
|
|
next_page = d.pop("next_page", UNSET)
|
|
|
|
search_results_video = cls(
|
|
results=results,
|
|
next_page=next_page,
|
|
)
|
|
|
|
search_results_video.additional_properties = d
|
|
return search_results_video
|
|
|
|
@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
|