Name |
Type |
Description |
Notes |
name |
str |
Name of Task |
[optional] |
description |
str |
Description of Task |
|
status |
TaskStatus |
|
[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] |
metadata |
Dict[str, object] |
|
[optional] |
document_ids |
List[str] |
|
[optional] |
from formkiq_client.models.add_task import AddTask
# TODO update the JSON string below
json = "{}"
# create an instance of AddTask from a JSON string
add_task_instance = AddTask.from_json(json)
# print the JSON string representation of the object
print(AddTask.to_json())
# convert the object into a dict
add_task_dict = add_task_instance.to_dict()
# create an instance of AddTask from a dict
add_task_from_dict = AddTask.from_dict(add_task_dict)
[Back to Model list] [Back to API list] [Back to README]