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