Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

Almanax.md

File metadata and controls

33 lines (24 loc) · 1.19 KB

Almanax

Properties

Name Type Description Notes
bonus AlmanaxBonus [optional]
var_date str [optional]
tribute AlmanaxTribute [optional]
reward_kamas int Amount of Kamas you get as reward for finishing this Almanax quest. [optional]
reward_xp int Optional field that shows when a level is given in the request. Shows the experience points you get this day for finishing this Almanax quest. [optional]

Example

from dofusdude.models.almanax import Almanax

# TODO update the JSON string below
json = "{}"
# create an instance of Almanax from a JSON string
almanax_instance = Almanax.from_json(json)
# print the JSON string representation of the object
print(Almanax.to_json())

# convert the object into a dict
almanax_dict = almanax_instance.to_dict()
# create an instance of Almanax from a dict
almanax_from_dict = Almanax.from_dict(almanax_dict)

[Back to Model list] [Back to API list] [Back to README]