Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.17 KB

File metadata and controls

38 lines (29 loc) · 1.17 KB

AccountLimits

Properties

Name Type Description Notes
code int
message str [optional]
max_llp_percentage int
max_llp_amount str
user_tier str
can_create_public_pool bool
current_maker_fee_tick int
current_taker_fee_tick int
leased_lit str
effective_lit_stakes 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]