# CreateAgentKeyRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **str** | | **type** | **str** | | **value** | **str** | | **description** | **str** | | [optional] ## Example ```python from h2ogpte.rest_async.models.create_agent_key_request import CreateAgentKeyRequest # TODO update the JSON string below json = "{}" # create an instance of CreateAgentKeyRequest from a JSON string create_agent_key_request_instance = CreateAgentKeyRequest.from_json(json) # print the JSON string representation of the object print(CreateAgentKeyRequest.to_json()) # convert the object into a dict create_agent_key_request_dict = create_agent_key_request_instance.to_dict() # create an instance of CreateAgentKeyRequest from a dict create_agent_key_request_from_dict = CreateAgentKeyRequest.from_dict(create_agent_key_request_dict) ```