Name | Type | Description | Notes |
---|---|---|---|
type | BuildType | ||
state | JobStateResult | ||
request | BuildArgs | ||
result | BuildResult | [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.build_job_status import BuildJobStatus
# TODO update the JSON string below
json = "{}"
# create an instance of BuildJobStatus from a JSON string
build_job_status_instance = BuildJobStatus.from_json(json)
# print the JSON string representation of the object
print BuildJobStatus.to_json()
# convert the object into a dict
build_job_status_dict = build_job_status_instance.to_dict()
# create an instance of BuildJobStatus from a dict
build_job_status_form_dict = build_job_status.from_dict(build_job_status_dict)