Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 913 Bytes

InvokeHALLink.md

File metadata and controls

29 lines (20 loc) · 913 Bytes

InvokeHALLink

Properties

Name Type Description Notes
invoke HALLink [optional]

Example

from waylay.services.registry.models.invoke_hal_link import InvokeHALLink

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

# convert the object into a dict
invoke_hal_link_dict = invoke_hal_link_instance.to_dict()
# create an instance of InvokeHALLink from a dict
invoke_hal_link_form_dict = invoke_hal_link.from_dict(invoke_hal_link_dict)

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