Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.41 KB

File metadata and controls

32 lines (23 loc) · 1.41 KB

PaginatedResponseWorkflowSummaryResponse

Properties

Name Type Description Notes
items List[WorkflowSummaryResponse] List of items
total int Total number of items
limit int Number of items per page
offset int Number of items to skip

Example

from ksapi.models.paginated_response_workflow_summary_response import PaginatedResponseWorkflowSummaryResponse

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

# convert the object into a dict
paginated_response_workflow_summary_response_dict = paginated_response_workflow_summary_response_instance.to_dict()
# create an instance of PaginatedResponseWorkflowSummaryResponse from a dict
paginated_response_workflow_summary_response_from_dict = PaginatedResponseWorkflowSummaryResponse.from_dict(paginated_response_workflow_summary_response_dict)

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