Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

BinarySearchResponse

Properties

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

Example

from revengai.models.binary_search_response import BinarySearchResponse

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

# convert the object into a dict
binary_search_response_dict = binary_search_response_instance.to_dict()
# create an instance of BinarySearchResponse from a dict
binary_search_response_from_dict = BinarySearchResponse.from_dict(binary_search_response_dict)

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