mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
1001 B
1001 B
ReqExportData
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| auth | str | [optional] | |
| account_index | int | [optional] [default to -1] | |
| market_id | int | [optional] | |
| type | str |
Example
from lighter.models.req_export_data import ReqExportData
# TODO update the JSON string below
json = "{}"
# create an instance of ReqExportData from a JSON string
req_export_data_instance = ReqExportData.from_json(json)
# print the JSON string representation of the object
print(ReqExportData.to_json())
# convert the object into a dict
req_export_data_dict = req_export_data_instance.to_dict()
# create an instance of ReqExportData from a dict
req_export_data_from_dict = ReqExportData.from_dict(req_export_data_dict)