Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 944 Bytes

JobStateFinished.md

File metadata and controls

29 lines (20 loc) · 944 Bytes

JobStateFinished

The job completed successfully or with failure.

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.job_state_finished import JobStateFinished

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

# convert the object into a dict
job_state_finished_dict = job_state_finished_instance.to_dict()
# create an instance of JobStateFinished from a dict
job_state_finished_form_dict = job_state_finished.from_dict(job_state_finished_dict)

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