Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

WorkflowLeaderboardResponse

Top workflows and top users by run count over a window.

Properties

Name Type Description Notes
top_workflows List[LeaderboardEntry] [optional]
top_users List[LeaderboardEntry] [optional]

Example

from ksapi.models.workflow_leaderboard_response import WorkflowLeaderboardResponse

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

# convert the object into a dict
workflow_leaderboard_response_dict = workflow_leaderboard_response_instance.to_dict()
# create an instance of WorkflowLeaderboardResponse from a dict
workflow_leaderboard_response_from_dict = WorkflowLeaderboardResponse.from_dict(workflow_leaderboard_response_dict)

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