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

Name Type Description Notes
results List[FunctionSearchResult] The results of the search

Example

from revengai.models.function_search_response import FunctionSearchResponse

# TODO update the JSON string below
json = "{}"
# create an instance of FunctionSearchResponse from a JSON string
function_search_response_instance = FunctionSearchResponse.from_json(json)
# print the JSON string representation of the object
print(FunctionSearchResponse.to_json())

# convert the object into a dict
function_search_response_dict = function_search_response_instance.to_dict()
# create an instance of FunctionSearchResponse from a dict
function_search_response_from_dict = FunctionSearchResponse.from_dict(function_search_response_dict)

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