Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
stelzo committed Dec 3, 2024
1 parent b90166d commit ef53bbd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/AlmanaxApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ with dofusdude.ApiClient(configuration) as api_client:
filter_bonus_type = 'experience-points' # str | ids from meta/{language}/almanax/bonuses (optional)
range_from = '2013-10-20' # date | yyyy-mm-dd (optional)
range_to = '2013-10-20' # date | yyyy-mm-dd (optional)
range_size = -1 # int | size of the returned range (optional)
range_size = -1 # int | Size of the returned range. Disable to fully use the range by setting size to -1. (optional)
timezone = 'Europe/Paris' # str | determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. (optional) (default to 'Europe/Paris')

try:
Expand All @@ -132,7 +132,7 @@ Name | Type | Description | Notes
**filter_bonus_type** | **str**| ids from meta/{language}/almanax/bonuses | [optional]
**range_from** | **date**| yyyy-mm-dd | [optional]
**range_to** | **date**| yyyy-mm-dd | [optional]
**range_size** | **int**| size of the returned range | [optional]
**range_size** | **int**| Size of the returned range. Disable to fully use the range by setting size to -1. | [optional]
**timezone** | **str**| determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location. | [optional] [default to 'Europe/Paris']

### Return type
Expand Down
12 changes: 6 additions & 6 deletions dofusdude/api/almanax_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def get_almanax_range(
filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None,
range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None,
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True)]], Field(description="Size of the returned range. Disable to fully use the range by setting size to -1.")] = None,
timezone: Annotated[Optional[StrictStr], Field(description="determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.")] = None,
_request_timeout: Union[
None,
Expand All @@ -350,7 +350,7 @@ def get_almanax_range(
:type range_from: date
:param range_to: yyyy-mm-dd
:type range_to: date
:param range_size: size of the returned range
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
:type range_size: int
:param timezone: determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.
:type timezone: str
Expand Down Expand Up @@ -410,7 +410,7 @@ def get_almanax_range_with_http_info(
filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None,
range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None,
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True)]], Field(description="Size of the returned range. Disable to fully use the range by setting size to -1.")] = None,
timezone: Annotated[Optional[StrictStr], Field(description="determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.")] = None,
_request_timeout: Union[
None,
Expand All @@ -437,7 +437,7 @@ def get_almanax_range_with_http_info(
:type range_from: date
:param range_to: yyyy-mm-dd
:type range_to: date
:param range_size: size of the returned range
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
:type range_size: int
:param timezone: determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.
:type timezone: str
Expand Down Expand Up @@ -497,7 +497,7 @@ def get_almanax_range_without_preload_content(
filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None,
range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None,
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True)]], Field(description="Size of the returned range. Disable to fully use the range by setting size to -1.")] = None,
timezone: Annotated[Optional[StrictStr], Field(description="determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.")] = None,
_request_timeout: Union[
None,
Expand All @@ -524,7 +524,7 @@ def get_almanax_range_without_preload_content(
:type range_from: date
:param range_to: yyyy-mm-dd
:type range_to: date
:param range_size: size of the returned range
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
:type range_size: int
:param timezone: determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.
:type timezone: str
Expand Down

0 comments on commit ef53bbd

Please sign in to comment.