Skip to content

Commit ef53bbd

Browse files
committed
1 parent b90166d commit ef53bbd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/AlmanaxApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ with dofusdude.ApiClient(configuration) as api_client:
109109
filter_bonus_type = 'experience-points' # str | ids from meta/{language}/almanax/bonuses (optional)
110110
range_from = '2013-10-20' # date | yyyy-mm-dd (optional)
111111
range_to = '2013-10-20' # date | yyyy-mm-dd (optional)
112-
range_size = -1 # int | size of the returned range (optional)
112+
range_size = -1 # int | Size of the returned range. Disable to fully use the range by setting size to -1. (optional)
113113
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')
114114

115115
try:
@@ -132,7 +132,7 @@ Name | Type | Description | Notes
132132
**filter_bonus_type** | **str**| ids from meta/{language}/almanax/bonuses | [optional]
133133
**range_from** | **date**| yyyy-mm-dd | [optional]
134134
**range_to** | **date**| yyyy-mm-dd | [optional]
135-
**range_size** | **int**| size of the returned range | [optional]
135+
**range_size** | **int**| Size of the returned range. Disable to fully use the range by setting size to -1. | [optional]
136136
**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']
137137

138138
### Return type

dofusdude/api/almanax_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def get_almanax_range(
323323
filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None,
324324
range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
325325
range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
326-
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None,
326+
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,
327327
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,
328328
_request_timeout: Union[
329329
None,
@@ -350,7 +350,7 @@ def get_almanax_range(
350350
:type range_from: date
351351
:param range_to: yyyy-mm-dd
352352
:type range_to: date
353-
:param range_size: size of the returned range
353+
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
354354
:type range_size: int
355355
: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.
356356
:type timezone: str
@@ -410,7 +410,7 @@ def get_almanax_range_with_http_info(
410410
filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None,
411411
range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
412412
range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
413-
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None,
413+
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,
414414
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,
415415
_request_timeout: Union[
416416
None,
@@ -437,7 +437,7 @@ def get_almanax_range_with_http_info(
437437
:type range_from: date
438438
:param range_to: yyyy-mm-dd
439439
:type range_to: date
440-
:param range_size: size of the returned range
440+
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
441441
:type range_size: int
442442
: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.
443443
:type timezone: str
@@ -497,7 +497,7 @@ def get_almanax_range_without_preload_content(
497497
filter_bonus_type: Annotated[Optional[StrictStr], Field(description="ids from meta/{language}/almanax/bonuses")] = None,
498498
range_from: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
499499
range_to: Annotated[Optional[date], Field(description="yyyy-mm-dd")] = None,
500-
range_size: Annotated[Optional[Annotated[int, Field(le=370, strict=True, ge=-1)]], Field(description="size of the returned range")] = None,
500+
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,
501501
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,
502502
_request_timeout: Union[
503503
None,
@@ -524,7 +524,7 @@ def get_almanax_range_without_preload_content(
524524
:type range_from: date
525525
:param range_to: yyyy-mm-dd
526526
:type range_to: date
527-
:param range_size: size of the returned range
527+
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
528528
:type range_size: int
529529
: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.
530530
:type timezone: str

0 commit comments

Comments
 (0)