mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
1021 B
1021 B
ReqGetAccountApiKeys
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| account_index | int | ||
| api_key_index | int | [optional] |
Example
from lighter.models.req_get_account_api_keys import ReqGetAccountApiKeys
# TODO update the JSON string below
json = "{}"
# create an instance of ReqGetAccountApiKeys from a JSON string
req_get_account_api_keys_instance = ReqGetAccountApiKeys.from_json(json)
# print the JSON string representation of the object
print(ReqGetAccountApiKeys.to_json())
# convert the object into a dict
req_get_account_api_keys_dict = req_get_account_api_keys_instance.to_dict()
# create an instance of ReqGetAccountApiKeys from a dict
req_get_account_api_keys_from_dict = ReqGetAccountApiKeys.from_dict(req_get_account_api_keys_dict)