Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 979 Bytes

QueryHALLinks.md

File metadata and controls

31 lines (22 loc) · 979 Bytes

QueryHALLinks

HAL Links for a query entity.

Properties

Name Type Description Notes
var_self HALLink
execute HALLink

Example

from waylay.services.queries.models.query_hal_links import QueryHALLinks

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

# convert the object into a dict
query_hal_links_dict = query_hal_links_instance.to_dict()
# create an instance of QueryHALLinks from a dict
query_hal_links_form_dict = query_hal_links.from_dict(query_hal_links_dict)

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