Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.36 KB

Resource.md

File metadata and controls

40 lines (30 loc) · 1.36 KB

Resource

Properties

Name Type Description Notes
ankama_id int [optional]
name str [optional]
description str [optional]
type CosmeticType [optional]
level int [optional]
pods int [optional]
image_urls ImageUrls [optional]
effects List[EffectsEntry] [optional]
conditions List[ConditionEntry] [optional]
condition_tree ConditionTreeNode [optional]
recipe List[RecipeEntry] [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]