Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 990 Bytes

PaginationLinksSelf.md

File metadata and controls

29 lines (20 loc) · 990 Bytes

PaginationLinksSelf

Properties

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

Example

from waylay.services.resources.models.pagination_links_self import PaginationLinksSelf

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

# convert the object into a dict
pagination_links_self_dict = pagination_links_self_instance.to_dict()
# create an instance of PaginationLinksSelf from a dict
pagination_links_self_form_dict = pagination_links_self.from_dict(pagination_links_self_dict)

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