Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

MatchFilters

Properties

Name Type Description Notes
binary_ids List[int] Restrict the candidate pool to these binary IDs. [optional]
collection_ids List[int] Restrict the candidate pool to binaries in these collection IDs. [optional]
debug_types List[str] Restrict matches to candidates with these debug source types. Accepted: SYSTEM, USER. [optional]
function_ids List[int] Restrict the candidate pool to these function IDs. [optional]
user_ids List[int] Restrict the candidate pool to functions owned by these user IDs. [optional]

Example

from revengai.models.match_filters import MatchFilters

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

# convert the object into a dict
match_filters_dict = match_filters_instance.to_dict()
# create an instance of MatchFilters from a dict
match_filters_from_dict = MatchFilters.from_dict(match_filters_dict)

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