Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

Workflowv3TaskListResponse

Returns just tasks, not cases.

Properties

Name Type Description Notes
status GooglerpcStatus [optional]
tasks List[Workflowv3Task] All tasks or just the ones requested. [optional]

Example

from ibm_gdsc_sdk_saas.models.workflowv3_task_list_response import Workflowv3TaskListResponse

# TODO update the JSON string below
json = "{}"
# create an instance of Workflowv3TaskListResponse from a JSON string
workflowv3_task_list_response_instance = Workflowv3TaskListResponse.from_json(json)
# print the JSON string representation of the object
print(Workflowv3TaskListResponse.to_json())

# convert the object into a dict
workflowv3_task_list_response_dict = workflowv3_task_list_response_instance.to_dict()
# create an instance of Workflowv3TaskListResponse from a dict
workflowv3_task_list_response_from_dict = Workflowv3TaskListResponse.from_dict(workflowv3_task_list_response_dict)

[Back to Model list] [Back to API list] [Back to README]