Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

ListEquipmentSets.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

ListEquipmentSets

Properties

Name Type Description Notes
links PagedLinks [optional]
sets List[ListEquipmentSet] [optional]

Example

from dofusdude.models.list_equipment_sets import ListEquipmentSets

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

# convert the object into a dict
list_equipment_sets_dict = list_equipment_sets_instance.to_dict()
# create an instance of ListEquipmentSets from a dict
list_equipment_sets_from_dict = ListEquipmentSets.from_dict(list_equipment_sets_dict)

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