You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/AlmanaxApi.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ with dofusdude.ApiClient(configuration) as api_client:
109
109
filter_bonus_type ='experience-points'# str | ids from meta/{language}/almanax/bonuses (optional)
110
110
range_from ='2013-10-20'# date | yyyy-mm-dd (optional)
111
111
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)
113
113
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')
114
114
115
115
try:
@@ -132,7 +132,7 @@ Name | Type | Description | Notes
132
132
**filter_bonus_type** | **str**| ids from meta/{language}/almanax/bonuses | [optional]
**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]
136
136
**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']
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,
327
327
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,
328
328
_request_timeout: Union[
329
329
None,
@@ -350,7 +350,7 @@ def get_almanax_range(
350
350
:type range_from: date
351
351
:param range_to: yyyy-mm-dd
352
352
: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.
354
354
:type range_size: int
355
355
: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.
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,
414
414
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,
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
441
441
:type range_size: int
442
442
: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.
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,
501
501
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,
:param range_size: Size of the returned range. Disable to fully use the range by setting size to -1.
528
528
:type range_size: int
529
529
: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.
0 commit comments