Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

JobEventsAndFunctionHALLink.md

File metadata and controls

33 lines (24 loc) · 1.26 KB

JobEventsAndFunctionHALLink

HAL links to related actions.

Properties

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

Example

from waylay.services.registry.models.job_events_and_function_hal_link import JobEventsAndFunctionHALLink

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

# convert the object into a dict
job_events_and_function_hal_link_dict = job_events_and_function_hal_link_instance.to_dict()
# create an instance of JobEventsAndFunctionHALLink from a dict
job_events_and_function_hal_link_form_dict = job_events_and_function_hal_link.from_dict(job_events_and_function_hal_link_dict)

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