JobDetails
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
id |
str |
||
name |
str |
||
overall_status |
str |
||
status |
str |
[optional] |
|
passed_percentage |
float |
||
failed_percentage |
float |
||
progress |
float |
||
created_at |
datetime |
||
updated_at |
datetime |
||
kind |
str |
||
statuses |
|||
errors |
List[str] |
||
duration |
str |
||
duration_seconds |
float |
Example
from h2ogpte.rest.models.job_details import JobDetails
# TODO update the JSON string below
json = "{}"
# create an instance of JobDetails from a JSON string
job_details_instance = JobDetails.from_json(json)
# print the JSON string representation of the object
print(JobDetails.to_json())
# convert the object into a dict
job_details_dict = job_details_instance.to_dict()
# create an instance of JobDetails from a dict
job_details_from_dict = JobDetails.from_dict(job_details_dict)