Updated to PhotosAPI v0.5.0
This commit is contained in:
@@ -11,6 +11,8 @@ from .http_validation_error import HTTPValidationError
|
||||
from .photo import Photo
|
||||
from .photo_public import PhotoPublic
|
||||
from .photo_search import PhotoSearch
|
||||
from .random_search_results_photo import RandomSearchResultsPhoto
|
||||
from .random_search_results_video import RandomSearchResultsVideo
|
||||
from .search_results_album import SearchResultsAlbum
|
||||
from .search_results_photo import SearchResultsPhoto
|
||||
from .search_results_video import SearchResultsVideo
|
||||
@@ -33,6 +35,8 @@ __all__ = (
|
||||
"Photo",
|
||||
"PhotoPublic",
|
||||
"PhotoSearch",
|
||||
"RandomSearchResultsPhoto",
|
||||
"RandomSearchResultsVideo",
|
||||
"SearchResultsAlbum",
|
||||
"SearchResultsPhoto",
|
||||
"SearchResultsVideo",
|
||||
|
72
photosapi_client/models/random_search_results_photo.py
Normal file
72
photosapi_client/models/random_search_results_photo.py
Normal file
@@ -0,0 +1,72 @@
|
||||
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar
|
||||
|
||||
import attr
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from ..models.photo_search import PhotoSearch
|
||||
|
||||
|
||||
T = TypeVar("T", bound="RandomSearchResultsPhoto")
|
||||
|
||||
|
||||
@attr.s(auto_attribs=True)
|
||||
class RandomSearchResultsPhoto:
|
||||
"""
|
||||
Attributes:
|
||||
results (List['PhotoSearch']):
|
||||
"""
|
||||
|
||||
results: List["PhotoSearch"]
|
||||
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)
|
||||
|
||||
field_dict: Dict[str, Any] = {}
|
||||
field_dict.update(self.additional_properties)
|
||||
field_dict.update(
|
||||
{
|
||||
"results": results,
|
||||
}
|
||||
)
|
||||
|
||||
return field_dict
|
||||
|
||||
@classmethod
|
||||
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
||||
from ..models.photo_search import PhotoSearch
|
||||
|
||||
d = src_dict.copy()
|
||||
results = []
|
||||
_results = d.pop("results")
|
||||
for results_item_data in _results:
|
||||
results_item = PhotoSearch.from_dict(results_item_data)
|
||||
|
||||
results.append(results_item)
|
||||
|
||||
random_search_results_photo = cls(
|
||||
results=results,
|
||||
)
|
||||
|
||||
random_search_results_photo.additional_properties = d
|
||||
return random_search_results_photo
|
||||
|
||||
@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
|
72
photosapi_client/models/random_search_results_video.py
Normal file
72
photosapi_client/models/random_search_results_video.py
Normal file
@@ -0,0 +1,72 @@
|
||||
from typing import TYPE_CHECKING, Any, Dict, List, Type, TypeVar
|
||||
|
||||
import attr
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from ..models.video_search import VideoSearch
|
||||
|
||||
|
||||
T = TypeVar("T", bound="RandomSearchResultsVideo")
|
||||
|
||||
|
||||
@attr.s(auto_attribs=True)
|
||||
class RandomSearchResultsVideo:
|
||||
"""
|
||||
Attributes:
|
||||
results (List['VideoSearch']):
|
||||
"""
|
||||
|
||||
results: List["VideoSearch"]
|
||||
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)
|
||||
|
||||
field_dict: Dict[str, Any] = {}
|
||||
field_dict.update(self.additional_properties)
|
||||
field_dict.update(
|
||||
{
|
||||
"results": results,
|
||||
}
|
||||
)
|
||||
|
||||
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)
|
||||
|
||||
random_search_results_video = cls(
|
||||
results=results,
|
||||
)
|
||||
|
||||
random_search_results_video.additional_properties = d
|
||||
return random_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
|
Reference in New Issue
Block a user