| Name |
Type |
Description |
Notes |
| account_index |
int |
|
|
| name |
str |
|
|
| description |
str |
|
|
| can_invite |
bool |
Remove After FE uses L1 meta endpoint |
|
| referral_points_percentage |
str |
Remove After FE uses L1 meta endpoint |
|
| created_at |
int |
|
|
from lighter.models.account_metadata import AccountMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of AccountMetadata from a JSON string
account_metadata_instance = AccountMetadata.from_json(json)
# print the JSON string representation of the object
print(AccountMetadata.to_json())
# convert the object into a dict
account_metadata_dict = account_metadata_instance.to_dict()
# create an instance of AccountMetadata from a dict
account_metadata_from_dict = AccountMetadata.from_dict(account_metadata_dict)
[Back to Model list] [Back to API list] [Back to README]