Files
ritmex-bot/docs/lighter/lighter-python-main/docs/ReqGetLatestDeposit.md
T

954 B

ReqGetLatestDeposit

Properties

Name Type Description Notes
l1_address str

Example

from lighter.models.req_get_latest_deposit import ReqGetLatestDeposit

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

# convert the object into a dict
req_get_latest_deposit_dict = req_get_latest_deposit_instance.to_dict()
# create an instance of ReqGetLatestDeposit from a dict
req_get_latest_deposit_from_dict = ReqGetLatestDeposit.from_dict(req_get_latest_deposit_dict)

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