Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

FunctionSearchResponse

Properties

NameTypeDescriptionNotes
resultsList[FunctionSearchResult]The results of the search

Example

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)

[Back to Model list][Back to API list][Back to README]