WorkflowList

Properties

NameTypeDescriptionNotes
metadataAPIResourceMeta[optional]
rowsList[Workflow][optional]
paginationPaginationResponse[optional]

Example

from hatchet_sdk.clients.rest.models.workflow_list import WorkflowList
 
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowList from a JSON string
workflow_list_instance = WorkflowList.from_json(json)
# print the JSON string representation of the object
print WorkflowList.to_json()
 
# convert the object into a dict
workflow_list_dict = workflow_list_instance.to_dict()
# create an instance of WorkflowList from a dict
workflow_list_form_dict = workflow_list.from_dict(workflow_list_dict)

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