Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 990 Bytes

PaginationLinksPrev.md

File metadata and controls

29 lines (20 loc) · 990 Bytes

PaginationLinksPrev

Properties

Name Type Description Notes
href str (Relative) URL of the entity.

Example

from waylay.services.resources.models.pagination_links_prev import PaginationLinksPrev

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

# convert the object into a dict
pagination_links_prev_dict = pagination_links_prev_instance.to_dict()
# create an instance of PaginationLinksPrev from a dict
pagination_links_prev_form_dict = pagination_links_prev.from_dict(pagination_links_prev_dict)

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