Allowed job states
Name | Type | Description | Notes |
---|
from waylay.services.registry.models.job_state import JobState
# TODO update the JSON string below
json = "{}"
# create an instance of JobState from a JSON string
job_state_instance = JobState.from_json(json)
# print the JSON string representation of the object
print JobState.to_json()
# convert the object into a dict
job_state_dict = job_state_instance.to_dict()
# create an instance of JobState from a dict
job_state_form_dict = job_state.from_dict(job_state_dict)