APIKeyResult

Properties

Name

Type

Description

Notes

secret_key

str

The secret key associated with the newly generated API Key.

api_key

APIKeyInfo

Example

from h2ogpte.rest.models.api_key_result import APIKeyResult

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

# convert the object into a dict
api_key_result_dict = api_key_result_instance.to_dict()
# create an instance of APIKeyResult from a dict
api_key_result_from_dict = APIKeyResult.from_dict(api_key_result_dict)