| Name |
Type |
Description |
Notes |
| id |
int |
|
|
| master_account_index |
int |
|
|
| lease_amount |
int |
|
|
| fee_amount |
int |
|
|
| start |
int |
|
|
| end |
int |
|
|
| status |
str |
|
|
| error |
str |
|
|
from lighter.models.lease_entry import LeaseEntry
# TODO update the JSON string below
json = "{}"
# create an instance of LeaseEntry from a JSON string
lease_entry_instance = LeaseEntry.from_json(json)
# print the JSON string representation of the object
print(LeaseEntry.to_json())
# convert the object into a dict
lease_entry_dict = lease_entry_instance.to_dict()
# create an instance of LeaseEntry from a dict
lease_entry_from_dict = LeaseEntry.from_dict(lease_entry_dict)
[Back to Model list] [Back to API list] [Back to README]