Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 907 Bytes

ListItems.md

File metadata and controls

30 lines (21 loc) · 907 Bytes

ListItems

Properties

Name Type Description Notes
links PagedLinks [optional]
items List[ListItem] [optional]

Example

from dofusdude.models.list_items import ListItems

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

# convert the object into a dict
list_items_dict = list_items_instance.to_dict()
# create an instance of ListItems from a dict
list_items_from_dict = ListItems.from_dict(list_items_dict)

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