API key metadata (without the secret key).
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | ||
| name | str | ||
| key_suffix | str | ||
| created_at | datetime |
from ksapi.models.api_key_response import ApiKeyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ApiKeyResponse from a JSON string
api_key_response_instance = ApiKeyResponse.from_json(json)
# print the JSON string representation of the object
print(ApiKeyResponse.to_json())
# convert the object into a dict
api_key_response_dict = api_key_response_instance.to_dict()
# create an instance of ApiKeyResponse from a dict
api_key_response_from_dict = ApiKeyResponse.from_dict(api_key_response_dict)