| Name |
Type |
Description |
Notes |
| name |
str |
|
|
| id |
str |
|
|
| created_at |
datetime |
|
|
from platform_api_python_client.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]