Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1003 Bytes

MountsListPaged.md

File metadata and controls

30 lines (21 loc) · 1003 Bytes

MountsListPaged

Properties

Name Type Description Notes
links LinksPaged [optional]
items List[MountListEntry] [optional]

Example

from dofusdude.models.mounts_list_paged import MountsListPaged

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

# convert the object into a dict
mounts_list_paged_dict = mounts_list_paged_instance.to_dict()
# create an instance of MountsListPaged from a dict
mounts_list_paged_from_dict = MountsListPaged.from_dict(mounts_list_paged_dict)

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