Name |
Type |
Description |
Notes |
name |
str |
Name of Task |
[optional] |
description |
str |
Description of Task |
[optional] |
planned_start_date |
str |
Planned Start Date |
[optional] |
start_date |
str |
Start Date |
[optional] |
end_date |
str |
End Date |
[optional] |
due_date |
str |
Due Date |
[optional] |
status |
TaskStatus |
|
[optional] |
metadata |
Dict[str, object] |
|
[optional] |
document_ids |
List[str] |
|
[optional] |
from formkiq_client.models.update_task import UpdateTask
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTask from a JSON string
update_task_instance = UpdateTask.from_json(json)
# print the JSON string representation of the object
print(UpdateTask.to_json())
# convert the object into a dict
update_task_dict = update_task_instance.to_dict()
# create an instance of UpdateTask from a dict
update_task_from_dict = UpdateTask.from_dict(update_task_dict)
[Back to Model list] [Back to API list] [Back to README]