Name | Type | Description | Notes |
---|---|---|---|
type | BatchJobStatusType | ||
state | JobStateResult | ||
request | BatchArgs | ||
result | BatchResult | [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.any_job_status import AnyJobStatus
# TODO update the JSON string below
json = "{}"
# create an instance of AnyJobStatus from a JSON string
any_job_status_instance = AnyJobStatus.from_json(json)
# print the JSON string representation of the object
print AnyJobStatus.to_json()
# convert the object into a dict
any_job_status_dict = any_job_status_instance.to_dict()
# create an instance of AnyJobStatus from a dict
any_job_status_form_dict = any_job_status.from_dict(any_job_status_dict)