| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[FunctionSearchResult] | The results of the search |
fromrevengai.models.function_search_responseimportFunctionSearchResponse# TODO update the JSON string belowjson="{}"# create an instance of FunctionSearchResponse from a JSON stringfunction_search_response_instance=FunctionSearchResponse.from_json(json)
# print the JSON string representation of the objectprint(FunctionSearchResponse.to_json())
# convert the object into a dictfunction_search_response_dict=function_search_response_instance.to_dict()
# create an instance of FunctionSearchResponse from a dictfunction_search_response_from_dict=FunctionSearchResponse.from_dict(function_search_response_dict)