Files
ritmex-bot/docs/lighter/lighter-python-main/docs/ReferralPoints.md
T

1.1 KiB

ReferralPoints

Properties

Name Type Description Notes
referrals List[ReferralPointEntry]
user_total_points int
user_last_week_points int
user_total_referral_reward_points int
user_last_week_referral_reward_points int
reward_point_multiplier str

Example

from lighter.models.referral_points import ReferralPoints

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

# convert the object into a dict
referral_points_dict = referral_points_instance.to_dict()
# create an instance of ReferralPoints from a dict
referral_points_from_dict = ReferralPoints.from_dict(referral_points_dict)

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