Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

RespGetLeaseOptions

Properties

Name Type Description Notes
code int
message str [optional]
options List[LeaseOptionEntry]
lit_incentives_account_index int

Example

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)

[Back to Model list] [Back to API list] [Back to README]