Info¶
job execution information
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| job_exec_id | int | job execution id | |
| started_by | str | user name who started the job | |
| job_name | str | actual job name | |
| status | str | current job status | |
| create_time | datetime | ||
| end_time | datetime | [optional] |
Example¶
from odm_api.models.info import Info
# TODO update the JSON string below
json = "{}"
# create an instance of Info from a JSON string
info_instance = Info.from_json(json)
# print the JSON string representation of the object
print(Info.to_json())
# convert the object into a dict
info_dict = info_instance.to_dict()
# create an instance of Info from a dict
info_from_dict = Info.from_dict(info_dict)