Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.14 KB

EquipmentSet.md

File metadata and controls

35 lines (26 loc) · 1.14 KB

EquipmentSet

Properties

Name Type Description Notes
ankama_id int [optional]
name str [optional]
equipment_ids List[int] [optional]
effects Dict[str, List[Effect]] [optional]
highest_equipment_level int [optional]
contains_cosmetics bool [optional]
contains_cosmetics_only bool [optional]

Example

from dofusdude.models.equipment_set import EquipmentSet

# TODO update the JSON string below
json = "{}"
# create an instance of EquipmentSet from a JSON string
equipment_set_instance = EquipmentSet.from_json(json)
# print the JSON string representation of the object
print(EquipmentSet.to_json())

# convert the object into a dict
equipment_set_dict = equipment_set_instance.to_dict()
# create an instance of EquipmentSet from a dict
equipment_set_from_dict = EquipmentSet.from_dict(equipment_set_dict)

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