| Name |
Type |
Description |
Notes |
| id |
str |
API key identifier |
|
| name |
str |
API key name |
|
| key |
str |
The API key (only returned on creation) |
|
| created_at |
datetime |
Creation timestamp |
|
| expires_at |
datetime |
Expiration timestamp |
[optional] |
| is_active |
bool |
Whether the key is active |
|
from rankvectors.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)
[Back to Model list] [Back to API list] [Back to README]