GoodMem
ReferenceClient SDKsPython SDKResponses

CreateApiKeyResponse

CreateApiKeyResponse documentation for Python SDK

Response returned when creating a new API key.

Properties

NameTypeDescriptionNotes
api_key_metadataApiKeyResponse[optional]
raw_api_keystrThe actual API key value. This is only returned once and cannot be retrieved again.[optional]

Example

from goodmem_client.models.create_api_key_response import CreateApiKeyResponse

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

# convert the object into a dict
create_api_key_response_dict = create_api_key_response_instance.to_dict()
# create an instance of CreateApiKeyResponse from a dict
create_api_key_response_from_dict = CreateApiKeyResponse.from_dict(create_api_key_response_dict)

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

On this page