| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | ||
| message | str | [optional] | |
| options | List[LeaseOptionEntry] | ||
| lit_incentives_account_index | int |
from lighter.models.resp_get_lease_options import RespGetLeaseOptions
# TODO update the JSON string below
json = "{}"
# create an instance of RespGetLeaseOptions from a JSON string
resp_get_lease_options_instance = RespGetLeaseOptions.from_json(json)
# print the JSON string representation of the object
print(RespGetLeaseOptions.to_json())
# convert the object into a dict
resp_get_lease_options_dict = resp_get_lease_options_instance.to_dict()
# create an instance of RespGetLeaseOptions from a dict
resp_get_lease_options_from_dict = RespGetLeaseOptions.from_dict(resp_get_lease_options_dict)