Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

JobStatusAndEntityHALLinks.md

File metadata and controls

33 lines (24 loc) · 1.24 KB

JobStatusAndEntityHALLinks

HAL links to related actions.

Properties

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

Example

from waylay.services.registry.models.job_status_and_entity_hal_links import JobStatusAndEntityHALLinks

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

# convert the object into a dict
job_status_and_entity_hal_links_dict = job_status_and_entity_hal_links_instance.to_dict()
# create an instance of JobStatusAndEntityHALLinks from a dict
job_status_and_entity_hal_links_form_dict = job_status_and_entity_hal_links.from_dict(job_status_and_entity_hal_links_dict)

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