# AgentToolKeyAssociations ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **tool** | **str** | | **keys** | [**List[KeyAssociation]**](KeyAssociation.md) | | ## Example ```python from h2ogpte.rest_sync.models.agent_tool_key_associations import AgentToolKeyAssociations # TODO update the JSON string below json = "{}" # create an instance of AgentToolKeyAssociations from a JSON string agent_tool_key_associations_instance = AgentToolKeyAssociations.from_json(json) # print the JSON string representation of the object print(AgentToolKeyAssociations.to_json()) # convert the object into a dict agent_tool_key_associations_dict = agent_tool_key_associations_instance.to_dict() # create an instance of AgentToolKeyAssociations from a dict agent_tool_key_associations_from_dict = AgentToolKeyAssociations.from_dict(agent_tool_key_associations_dict) ```