TaskInfo
Properties
| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] [readonly] |
| name |
str |
|
[optional] [readonly] |
| status |
str |
|
[optional] [readonly] |
| application |
str |
|
[optional] [readonly] |
| started_at |
int |
|
[optional] [readonly] |
| ended_at |
int |
|
[optional] [readonly] |
| created_by |
str |
|
[optional] [readonly] |
Example
from odm_api.models.task_info import TaskInfo
# TODO update the JSON string below
json = "{}"
# create an instance of TaskInfo from a JSON string
task_info_instance = TaskInfo.from_json(json)
# print the JSON string representation of the object
print(TaskInfo.to_json())
# convert the object into a dict
task_info_dict = task_info_instance.to_dict()
# create an instance of TaskInfo from a dict
task_info_from_dict = TaskInfo.from_dict(task_info_dict)
[Back to Model list] [Back to API list] [Back to README]