Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.26 KB

Build1.md

File metadata and controls

36 lines (27 loc) · 1.26 KB

Build1

Properties

Name Type Description Notes
type BuildType
operation str The operation name for the background task.
id str The id of the background job, or the constant `unknown`
state JobStateResult
created_at datetime The creation time of this job
created_by str The user that initiated this job
function FunctionRef [optional]
links JobAndFunctionHALLink

Example

from waylay.services.registry.models.build1 import Build1

# TODO update the JSON string below
json = "{}"
# create an instance of Build1 from a JSON string
build1_instance = Build1.from_json(json)
# print the JSON string representation of the object
print Build1.to_json()

# convert the object into a dict
build1_dict = build1_instance.to_dict()
# create an instance of Build1 from a dict
build1_form_dict = build1.from_dict(build1_dict)

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