Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 973 Bytes

JobHALLinks.md

File metadata and controls

31 lines (22 loc) · 973 Bytes

JobHALLinks

HAL links to related actions.

Properties

Name Type Description Notes
event HALLinks [optional]
job HALLinks [optional]

Example

from waylay.services.registry.models.job_hal_links import JobHALLinks

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

# convert the object into a dict
job_hal_links_dict = job_hal_links_instance.to_dict()
# create an instance of JobHALLinks from a dict
job_hal_links_form_dict = job_hal_links.from_dict(job_hal_links_dict)

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