# CreateAgentToolKeyAssociationsRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **tool** | **str** | | **keys** | [**List[NewKeyAssociation]**](NewKeyAssociation.md) | | ## Example ```python from h2ogpte.rest_async.models.create_agent_tool_key_associations_request import CreateAgentToolKeyAssociationsRequest # TODO update the JSON string below json = "{}" # create an instance of CreateAgentToolKeyAssociationsRequest from a JSON string create_agent_tool_key_associations_request_instance = CreateAgentToolKeyAssociationsRequest.from_json(json) # print the JSON string representation of the object print(CreateAgentToolKeyAssociationsRequest.to_json()) # convert the object into a dict create_agent_tool_key_associations_request_dict = create_agent_tool_key_associations_request_instance.to_dict() # create an instance of CreateAgentToolKeyAssociationsRequest from a dict create_agent_tool_key_associations_request_from_dict = CreateAgentToolKeyAssociationsRequest.from_dict(create_agent_tool_key_associations_request_dict) ```