# UpdateAgentToolPreferenceRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **reference_value** | **List[str]** | | ## Example ```python from h2ogpte.rest_async.models.update_agent_tool_preference_request import UpdateAgentToolPreferenceRequest # TODO update the JSON string below json = "{}" # create an instance of UpdateAgentToolPreferenceRequest from a JSON string update_agent_tool_preference_request_instance = UpdateAgentToolPreferenceRequest.from_json(json) # print the JSON string representation of the object print(UpdateAgentToolPreferenceRequest.to_json()) # convert the object into a dict update_agent_tool_preference_request_dict = update_agent_tool_preference_request_instance.to_dict() # create an instance of UpdateAgentToolPreferenceRequest from a dict update_agent_tool_preference_request_from_dict = UpdateAgentToolPreferenceRequest.from_dict(update_agent_tool_preference_request_dict) ```