Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 916 Bytes

HALPageLinks.md

File metadata and controls

29 lines (20 loc) · 916 Bytes

HALPageLinks

Properties

Name Type Description Notes
links PaginationLinks [optional]

Example

from waylay.services.resources.models.hal_page_links import HALPageLinks

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

# convert the object into a dict
hal_page_links_dict = hal_page_links_instance.to_dict()
# create an instance of HALPageLinks from a dict
hal_page_links_form_dict = hal_page_links.from_dict(hal_page_links_dict)

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