Name | Type | Description | Notes |
---|---|---|---|
ankama_id | int | [optional] | |
name | str | [optional] | |
description | str | [optional] | |
type | TranslatedId | [optional] | |
level | int | [optional] | |
pods | int | [optional] | |
image_urls | Images | [optional] | |
effects | List[Effect] | [optional] | |
conditions | ConditionNode | [optional] | |
recipe | List[Recipe] | [optional] |
from dofusdude.models.resource import Resource
# TODO update the JSON string below
json = "{}"
# create an instance of Resource from a JSON string
resource_instance = Resource.from_json(json)
# print the JSON string representation of the object
print(Resource.to_json())
# convert the object into a dict
resource_dict = resource_instance.to_dict()
# create an instance of Resource from a dict
resource_from_dict = Resource.from_dict(resource_dict)