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