GoodMem
ReferenceClient SDKsPython SDKResponses

ListApiKeysResponse

ListApiKeysResponse documentation for Python SDK

Response containing a list of API keys.

Properties

NameTypeDescriptionNotes
keysList[ApiKeyResponse]List of API keys belonging to the authenticated user.[optional]

Example

from goodmem_client.models.list_api_keys_response import ListApiKeysResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ListApiKeysResponse from a JSON string
list_api_keys_response_instance = ListApiKeysResponse.from_json(json)
# print the JSON string representation of the object
print(ListApiKeysResponse.to_json())

# convert the object into a dict
list_api_keys_response_dict = list_api_keys_response_instance.to_dict()
# create an instance of ListApiKeysResponse from a dict
list_api_keys_response_from_dict = ListApiKeysResponse.from_dict(list_api_keys_response_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page