Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.38 KB

Build.md

File metadata and controls

39 lines (30 loc) · 1.38 KB

Build

Properties

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]

Example

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)

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