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 | |
processed_at | datetime | The timestamp of when the job has begun processing. | [optional] |
finished_at | datetime | The timestamp of when the job has finished processing. | [optional] |
attempts_made | float | The number of retries that were attempted. | [optional] |
created_by | str | The user that initiated this job | |
function | FunctionRef | [optional] | |
links | JobAndFunctionHALLink |
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)