Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

GetCaseTasksResponse.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

GetCaseTasksResponse

Properties

Name Type Description Notes
next str Next page of results token [optional]
tasks List[Task] List of tasks [optional]

Example

from formkiq_client.models.get_case_tasks_response import GetCaseTasksResponse

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

# convert the object into a dict
get_case_tasks_response_dict = get_case_tasks_response_instance.to_dict()
# create an instance of GetCaseTasksResponse from a dict
get_case_tasks_response_from_dict = GetCaseTasksResponse.from_dict(get_case_tasks_response_dict)

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