| Name | Type | Description | Notes |
|---|---|---|---|
| alt_id | str | [optional] | |
| assignments | List[Workflowv3Entity] | Optional: Entities that the task is assigned to. | [optional] |
| comment | str | Optional: Comment - this text will be added to the comments history. | [optional] |
| date_due | datetime | Optional: Date due. | [optional] |
| depends_on | List[str] | Optional: Task ID dependencies if sequential processing is needed. | [optional] |
| description | str | Optional: Multiline description of the task. | [optional] |
| investigation_links | List[Schedulerv3ConfigurationItem] | [optional] | |
| origin | Workflowv3Origin | [optional] | |
| priority | Workflowv3Priority | [optional] [default to Workflowv3Priority.UNDEFINED_PRIORITY] | |
| report_result | Workflowv3ReportResult | [optional] | |
| response_template | Schedulerv3ConfigurationItem | [optional] | |
| status | Workflowv3Status | [optional] [default to Workflowv3Status.UNDEFINED_STATUS] | |
| tags | List[str] | [optional] | |
| title | str | Task title (subject). | [optional] |
from ibm_gdsc_sdk_saas.models.workflowv3_task_create import Workflowv3TaskCreate
# TODO update the JSON string below
json = "{}"
# create an instance of Workflowv3TaskCreate from a JSON string
workflowv3_task_create_instance = Workflowv3TaskCreate.from_json(json)
# print the JSON string representation of the object
print(Workflowv3TaskCreate.to_json())
# convert the object into a dict
workflowv3_task_create_dict = workflowv3_task_create_instance.to_dict()
# create an instance of Workflowv3TaskCreate from a dict
workflowv3_task_create_from_dict = Workflowv3TaskCreate.from_dict(workflowv3_task_create_dict)