PaginationLinksPrev
Name |
Type |
Description |
Notes |
href |
str |
(Relative) URL of the entity. |
|
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]