-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: generated code for commit d2b0f7d6. [skip ci]
algolia/api-clients-automation@d2b0f7d Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
- Loading branch information
1 parent
f956b88
commit c4e8d4d
Showing
8 changed files
with
281 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
from json import loads | ||
from typing import Annotated, Any, Dict, Self | ||
|
||
from pydantic import BaseModel, ConfigDict, Field, StrictInt | ||
|
||
|
||
class SearchPagination(BaseModel): | ||
""" | ||
SearchPagination | ||
""" | ||
|
||
page: Annotated[int, Field(strict=True, ge=0)] = Field( | ||
description="Page of search results to retrieve." | ||
) | ||
nb_hits: StrictInt = Field(description="Number of results (hits).", alias="nbHits") | ||
nb_pages: StrictInt = Field( | ||
description="Number of pages of results.", alias="nbPages" | ||
) | ||
hits_per_page: Annotated[int, Field(le=1000, strict=True, ge=1)] = Field( | ||
description="Number of hits per page.", alias="hitsPerPage" | ||
) | ||
|
||
model_config = ConfigDict( | ||
use_enum_values=True, populate_by_name=True, validate_assignment=True | ||
) | ||
|
||
def to_json(self) -> str: | ||
return self.model_dump_json(by_alias=True, exclude_unset=True) | ||
|
||
@classmethod | ||
def from_json(cls, json_str: str) -> Self: | ||
"""Create an instance of SearchPagination from a JSON string""" | ||
return cls.from_dict(loads(json_str)) | ||
|
||
def to_dict(self) -> Dict[str, Any]: | ||
"""Return the dictionary representation of the model using alias. | ||
This has the following differences from calling pydantic's | ||
`self.model_dump(by_alias=True)`: | ||
* `None` is only added to the output dict for nullable fields that | ||
were set at model initialization. Other fields with value `None` | ||
are ignored. | ||
""" | ||
_dict = self.model_dump( | ||
by_alias=True, | ||
exclude={}, | ||
exclude_none=True, | ||
) | ||
return _dict | ||
|
||
@classmethod | ||
def from_dict(cls, obj: Dict) -> Self: | ||
"""Create an instance of SearchPagination from a dict""" | ||
if obj is None: | ||
return None | ||
|
||
if not isinstance(obj, dict): | ||
return cls.model_validate(obj) | ||
|
||
_obj = cls.model_validate( | ||
{ | ||
"page": obj.get("page"), | ||
"nbHits": obj.get("nbHits"), | ||
"nbPages": obj.get("nbPages"), | ||
"hitsPerPage": obj.get("hitsPerPage"), | ||
} | ||
) | ||
return _obj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
from json import loads | ||
from typing import Annotated, Any, Dict, Optional, Self | ||
|
||
from pydantic import BaseModel, ConfigDict, Field, StrictInt | ||
|
||
|
||
class BrowsePagination(BaseModel): | ||
""" | ||
BrowsePagination | ||
""" | ||
|
||
page: Optional[Annotated[int, Field(strict=True, ge=0)]] = Field( | ||
default=0, description="Page of search results to retrieve." | ||
) | ||
nb_hits: Optional[StrictInt] = Field( | ||
default=None, description="Number of results (hits).", alias="nbHits" | ||
) | ||
nb_pages: Optional[StrictInt] = Field( | ||
default=None, description="Number of pages of results.", alias="nbPages" | ||
) | ||
hits_per_page: Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]] = Field( | ||
default=20, description="Number of hits per page.", alias="hitsPerPage" | ||
) | ||
|
||
model_config = ConfigDict( | ||
use_enum_values=True, populate_by_name=True, validate_assignment=True | ||
) | ||
|
||
def to_json(self) -> str: | ||
return self.model_dump_json(by_alias=True, exclude_unset=True) | ||
|
||
@classmethod | ||
def from_json(cls, json_str: str) -> Self: | ||
"""Create an instance of BrowsePagination from a JSON string""" | ||
return cls.from_dict(loads(json_str)) | ||
|
||
def to_dict(self) -> Dict[str, Any]: | ||
"""Return the dictionary representation of the model using alias. | ||
This has the following differences from calling pydantic's | ||
`self.model_dump(by_alias=True)`: | ||
* `None` is only added to the output dict for nullable fields that | ||
were set at model initialization. Other fields with value `None` | ||
are ignored. | ||
""" | ||
_dict = self.model_dump( | ||
by_alias=True, | ||
exclude={}, | ||
exclude_none=True, | ||
) | ||
return _dict | ||
|
||
@classmethod | ||
def from_dict(cls, obj: Dict) -> Self: | ||
"""Create an instance of BrowsePagination from a dict""" | ||
if obj is None: | ||
return None | ||
|
||
if not isinstance(obj, dict): | ||
return cls.model_validate(obj) | ||
|
||
_obj = cls.model_validate( | ||
{ | ||
"page": obj.get("page"), | ||
"nbHits": obj.get("nbHits"), | ||
"nbPages": obj.get("nbPages"), | ||
"hitsPerPage": obj.get("hitsPerPage"), | ||
} | ||
) | ||
return _obj |
Oops, something went wrong.