| 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] |
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]