Name | Type | Description | Notes |
---|---|---|---|
links | JobHALLinks | [optional] | |
type | BuildType | ||
state | JobStateResult | ||
request | BuildArgs | [optional] | |
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 | [optional] | |
failure_reason | FailureReason | [optional] |
from waylay.services.registry.models.build import Build
# TODO update the JSON string below
json = "{}"
# create an instance of Build from a JSON string
build_instance = Build.from_json(json)
# print the JSON string representation of the object
print Build.to_json()
# convert the object into a dict
build_dict = build_instance.to_dict()
# create an instance of Build from a dict
build_form_dict = build.from_dict(build_dict)