Name | Type | Description | Notes |
---|---|---|---|
type | DeployType | ||
state | JobStateResult | ||
request | DeployArgs | ||
result | DeployResult | [optional] | |
created_at | datetime | The timestamp of creation of this job | |
created_by | str | The user that created this job | |
operation | str | Request operation | |
function | FunctionRef | [optional] | |
job | JobStatus |
from waylay.services.registry.models.deploy_job_status import DeployJobStatus
# TODO update the JSON string below
json = "{}"
# create an instance of DeployJobStatus from a JSON string
deploy_job_status_instance = DeployJobStatus.from_json(json)
# print the JSON string representation of the object
print DeployJobStatus.to_json()
# convert the object into a dict
deploy_job_status_dict = deploy_job_status_instance.to_dict()
# create an instance of DeployJobStatus from a dict
deploy_job_status_form_dict = deploy_job_status.from_dict(deploy_job_status_dict)