Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1016 Bytes

File metadata and controls

33 lines (24 loc) · 1016 Bytes

LeaderboardEntry

Properties

Name Type Description Notes
l1_address str
points float
entry int
entry_id int
metadata str

Example

from lighter.models.leaderboard_entry import LeaderboardEntry

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

# convert the object into a dict
leaderboard_entry_dict = leaderboard_entry_instance.to_dict()
# create an instance of LeaderboardEntry from a dict
leaderboard_entry_from_dict = LeaderboardEntry.from_dict(leaderboard_entry_dict)

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