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

966 B

AccountLimits

Properties

Name Type Description Notes
code int
message str [optional]
max_llp_percentage int
user_tier str

Example

from lighter.models.account_limits import AccountLimits

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

# convert the object into a dict
account_limits_dict = account_limits_instance.to_dict()
# create an instance of AccountLimits from a dict
account_limits_from_dict = AccountLimits.from_dict(account_limits_dict)

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