mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
33 lines
966 B
Markdown
33 lines
966 B
Markdown
# AccountLimits
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**code** | **int** | |
|
|
**message** | **str** | | [optional]
|
|
**max_llp_percentage** | **int** | |
|
|
**user_tier** | **str** | |
|
|
|
|
## Example
|
|
|
|
```python
|
|
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|