Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 871 Bytes

File metadata and controls

29 lines (20 loc) · 871 Bytes

Leaderboard

Properties

Name Type Description Notes
entries List[LeaderboardEntry]

Example

from lighter.models.leaderboard import Leaderboard

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

# convert the object into a dict
leaderboard_dict = leaderboard_instance.to_dict()
# create an instance of Leaderboard from a dict
leaderboard_from_dict = Leaderboard.from_dict(leaderboard_dict)

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