mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
1.1 KiB
1.1 KiB
ReqGetDepositHistory
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| account_index | int | ||
| auth | str | made optional to support header auth clients | [optional] |
| l1_address | str | ||
| cursor | str | [optional] | |
| filter | str | [optional] |
Example
from lighter.models.req_get_deposit_history import ReqGetDepositHistory
# TODO update the JSON string below
json = "{}"
# create an instance of ReqGetDepositHistory from a JSON string
req_get_deposit_history_instance = ReqGetDepositHistory.from_json(json)
# print the JSON string representation of the object
print(ReqGetDepositHistory.to_json())
# convert the object into a dict
req_get_deposit_history_dict = req_get_deposit_history_instance.to_dict()
# create an instance of ReqGetDepositHistory from a dict
req_get_deposit_history_from_dict = ReqGetDepositHistory.from_dict(req_get_deposit_history_dict)