HAL Links for a query entity.
Name | Type | Description | Notes |
---|---|---|---|
var_self | HALLink | ||
first | HALLink | [optional] | |
prev | HALLink | [optional] | |
next | HALLink | [optional] | |
last | HALLink | [optional] |
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)