Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 961 Bytes

PageLink.md

File metadata and controls

33 lines (24 loc) · 961 Bytes

PageLink

Properties

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

Example

from firefly_iii_client.models.page_link import PageLink

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

# convert the object into a dict
page_link_dict = page_link_instance.to_dict()
# create an instance of PageLink from a dict
page_link_form_dict = page_link.from_dict(page_link_dict)

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