Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 988 Bytes

JobStatusHALLink.md

File metadata and controls

30 lines (21 loc) · 988 Bytes

JobStatusHALLink

HAL links to related actions.

Properties

Name Type Description Notes
job HALLinks [optional]

Example

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)

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