Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1009 Bytes

File metadata and controls

33 lines (24 loc) · 1009 Bytes

ApiKeyResponse

API key metadata (without the secret key).

Properties

Name Type Description Notes
id UUID
name str
key_suffix str
created_at datetime

Example

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)

[Back to Model list] [Back to API list] [Back to README]