Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.16 KB

File metadata and controls

38 lines (29 loc) · 1.16 KB

CronRun

Properties

Name Type Description Notes
run_id str [optional]
run_type str [optional]
command str [optional]
status str [optional]
start_time datetime [optional]
end_time datetime [optional]
exit_code int [optional]
output List[str] [optional]
schedule_name str [optional]
target_container_name str [optional]

Example

from quantcdn.models.cron_run import CronRun

# TODO update the JSON string below
json = "{}"
# create an instance of CronRun from a JSON string
cron_run_instance = CronRun.from_json(json)
# print the JSON string representation of the object
print(CronRun.to_json())

# convert the object into a dict
cron_run_dict = cron_run_instance.to_dict()
# create an instance of CronRun from a dict
cron_run_from_dict = CronRun.from_dict(cron_run_dict)

[Back to Model list] [Back to API list] [Back to README]