Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 868 Bytes

Recipe.md

File metadata and controls

31 lines (22 loc) · 868 Bytes

Recipe

Properties

Name Type Description Notes
item_ankama_id int [optional]
item_subtype str [optional]
quantity int [optional]

Example

from dofusdude.models.recipe import Recipe

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

# convert the object into a dict
recipe_dict = recipe_instance.to_dict()
# create an instance of Recipe from a dict
recipe_from_dict = Recipe.from_dict(recipe_dict)

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