Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.18 KB

QueryListHALLinks.md

File metadata and controls

34 lines (25 loc) · 1.18 KB

QueryListHALLinks

HAL Links for a query entity.

Properties

Name Type Description Notes
var_self HALLink
first HALLink [optional]
prev HALLink [optional]
next HALLink [optional]
last HALLink [optional]

Example

from waylay.services.queries.models.query_list_hal_links import QueryListHALLinks

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

# convert the object into a dict
query_list_hal_links_dict = query_list_hal_links_instance.to_dict()
# create an instance of QueryListHALLinks from a dict
query_list_hal_links_form_dict = query_list_hal_links.from_dict(query_list_hal_links_dict)

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