Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

PaginationLinks.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

PaginationLinks

HAL links for pagination

Properties

Name Type Description Notes
var_self PaginationLinksSelf
next PaginationLinksNext [optional]
prev PaginationLinksPrev [optional]

Example

from waylay.services.resources.models.pagination_links import PaginationLinks

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

# convert the object into a dict
pagination_links_dict = pagination_links_instance.to_dict()
# create an instance of PaginationLinks from a dict
pagination_links_form_dict = pagination_links.from_dict(pagination_links_dict)

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