Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 969 Bytes

File metadata and controls

31 lines (22 loc) · 969 Bytes

LivePointsTotal

Properties

Name Type Description Notes
code int
message str [optional]
total_live_points float

Example

from lighter.models.live_points_total import LivePointsTotal

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

# convert the object into a dict
live_points_total_dict = live_points_total_instance.to_dict()
# create an instance of LivePointsTotal from a dict
live_points_total_from_dict = LivePointsTotal.from_dict(live_points_total_dict)

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