HAL links to related actions.
Name | Type | Description | Notes |
---|---|---|---|
job | HALLinks | [optional] |
from waylay.services.registry.models.job_status_hal_link import JobStatusHALLink
# TODO update the JSON string below
json = "{}"
# create an instance of JobStatusHALLink from a JSON string
job_status_hal_link_instance = JobStatusHALLink.from_json(json)
# print the JSON string representation of the object
print JobStatusHALLink.to_json()
# convert the object into a dict
job_status_hal_link_dict = job_status_hal_link_instance.to_dict()
# create an instance of JobStatusHALLink from a dict
job_status_hal_link_form_dict = job_status_hal_link.from_dict(job_status_hal_link_dict)