| Name |
Type |
Description |
Notes |
| has_more |
bool |
|
|
| limit |
int |
|
|
| offset |
int |
|
|
| total |
int |
Exact total match count; only present when `include_total=true`. |
[optional] |
| workflows |
List[Workflow] |
|
|
from queueflow.models.list_workflows_response import ListWorkflowsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListWorkflowsResponse from a JSON string
list_workflows_response_instance = ListWorkflowsResponse.from_json(json)
# print the JSON string representation of the object
print(ListWorkflowsResponse.to_json())
# convert the object into a dict
list_workflows_response_dict = list_workflows_response_instance.to_dict()
# create an instance of ListWorkflowsResponse from a dict
list_workflows_response_from_dict = ListWorkflowsResponse.from_dict(list_workflows_response_dict)
[Back to Model list] [Back to API list] [Back to README]