mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
954 B
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)