Files
ritmex-bot/docs/lighter/lighter-python-main/docs/ApiKey.md
T

33 lines
867 B
Markdown

# ApiKey
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**account_index** | **int** | |
**api_key_index** | **int** | |
**nonce** | **int** | |
**public_key** | **str** | |
## Example
```python
from lighter.models.api_key import ApiKey
# TODO update the JSON string below
json = "{}"
# create an instance of ApiKey from a JSON string
api_key_instance = ApiKey.from_json(json)
# print the JSON string representation of the object
print(ApiKey.to_json())
# convert the object into a dict
api_key_dict = api_key_instance.to_dict()
# create an instance of ApiKey from a dict
api_key_from_dict = ApiKey.from_dict(api_key_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)