Name | Type | Description | Notes |
---|---|---|---|
item_ankama_id | int | [optional] | |
item_subtype | str | [optional] | |
quantity | int | [optional] |
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)