Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1003 Bytes

File metadata and controls

32 lines (23 loc) · 1003 Bytes

RespGetLeases

Properties

Name Type Description Notes
code int
message str [optional]
leases List[LeaseEntry]
next_cursor str [optional]

Example

from lighter.models.resp_get_leases import RespGetLeases

# TODO update the JSON string below
json = "{}"
# create an instance of RespGetLeases from a JSON string
resp_get_leases_instance = RespGetLeases.from_json(json)
# print the JSON string representation of the object
print(RespGetLeases.to_json())

# convert the object into a dict
resp_get_leases_dict = resp_get_leases_instance.to_dict()
# create an instance of RespGetLeases from a dict
resp_get_leases_from_dict = RespGetLeases.from_dict(resp_get_leases_dict)

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