Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.24 KB

Resource.md

File metadata and controls

38 lines (29 loc) · 1.24 KB

Resource

Properties

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]

Example

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)

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