JobStatus¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
id |
str |
||
type |
str |
||
status |
str |
||
start_time |
str |
[optional] |
|
end_time |
str |
[optional] |
|
log |
str |
logview URL or log string |
[optional] |
detail |
Dict[str, object] |
[optional] |
Example¶
from graphscope.flex.rest.models.job_status import JobStatus
# TODO update the JSON string below
json = "{}"
# create an instance of JobStatus from a JSON string
job_status_instance = JobStatus.from_json(json)
# print the JSON string representation of the object
print(JobStatus.to_json())
# convert the object into a dict
job_status_dict = job_status_instance.to_dict()
# create an instance of JobStatus from a dict
job_status_from_dict = JobStatus.from_dict(job_status_dict)