Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 941 Bytes

PagedLinks.md

File metadata and controls

32 lines (23 loc) · 941 Bytes

PagedLinks

Properties

Name Type Description Notes
first str [optional]
prev str [optional]
next str [optional]
last str [optional]

Example

from dofusdude.models.paged_links import PagedLinks

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

# convert the object into a dict
paged_links_dict = paged_links_instance.to_dict()
# create an instance of PagedLinks from a dict
paged_links_from_dict = PagedLinks.from_dict(paged_links_dict)

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