Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.15 KB

UpdateTask.md

File metadata and controls

35 lines (26 loc) · 1.15 KB

UpdateTask

Properties

Name Type Description Notes
name str Name of Task [optional]
description str Description of Task [optional]
start_date str Start Date [optional]
end_date str End Date [optional]
status TaskStatus [optional]
metadata Dict[str, object] [optional]
document_ids List[str] [optional]

Example

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]