Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

JobAndFunctionHALLink.md

File metadata and controls

34 lines (25 loc) · 1.23 KB

JobAndFunctionHALLink

HAL links to related actions.

Properties

Name Type Description Notes
event HALLinks [optional]
job HALLinks [optional]
plug HALLinks
webscript HALLinks
model HALLinks

Example

from waylay.services.registry.models.job_and_function_hal_link import JobAndFunctionHALLink

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

# convert the object into a dict
job_and_function_hal_link_dict = job_and_function_hal_link_instance.to_dict()
# create an instance of JobAndFunctionHALLink from a dict
job_and_function_hal_link_form_dict = job_and_function_hal_link.from_dict(job_and_function_hal_link_dict)

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