Name |
Type |
Description |
Notes |
ankama_id |
int |
|
[optional] |
name |
str |
|
[optional] |
items |
int |
amount |
[optional] |
level |
int |
|
[optional] |
effects |
Dict[str, List[Effect]] |
|
[optional] |
equipment_ids |
List[int] |
|
[optional] |
contains_cosmetics |
bool |
|
[optional] |
contains_cosmetics_only |
bool |
|
[optional] |
from dofusdude.models.list_equipment_set import ListEquipmentSet
# TODO update the JSON string below
json = "{}"
# create an instance of ListEquipmentSet from a JSON string
list_equipment_set_instance = ListEquipmentSet.from_json(json)
# print the JSON string representation of the object
print(ListEquipmentSet.to_json())
# convert the object into a dict
list_equipment_set_dict = list_equipment_set_instance.to_dict()
# create an instance of ListEquipmentSet from a dict
list_equipment_set_from_dict = ListEquipmentSet.from_dict(list_equipment_set_dict)
[Back to Model list] [Back to API list] [Back to README]