JobStatus¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
id |
str |
[optional] |
|
type |
str |
[optional] |
|
status |
str |
[optional] |
|
start_time |
int |
[optional] |
|
end_time |
int |
[optional] |
|
log |
str |
URL or log string |
[optional] |
detail |
Dict[str, object] |
[optional] |
Example¶
from gs_interactive.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)
[Back to Model list] [Back to API list] [Back to python_sdk]