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