You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Binary IDs to match the analysis against, one workflow per binary.
debug_types
List[Optional[str]]
Restrict matches to candidates with these debug source types. Defaults to ["SYSTEM"].
[optional]
min_similarity
float
Similarity floor as a percentage. Defaults to 90.
[optional]
results_per_function
int
Max matches returned per source function. Defaults to 1.
[optional]
Example
fromrevengai.models.start_batch_matching_input_bodyimportStartBatchMatchingInputBody# TODO update the JSON string belowjson="{}"# create an instance of StartBatchMatchingInputBody from a JSON stringstart_batch_matching_input_body_instance=StartBatchMatchingInputBody.from_json(json)
# print the JSON string representation of the objectprint(StartBatchMatchingInputBody.to_json())
# convert the object into a dictstart_batch_matching_input_body_dict=start_batch_matching_input_body_instance.to_dict()
# create an instance of StartBatchMatchingInputBody from a dictstart_batch_matching_input_body_from_dict=StartBatchMatchingInputBody.from_dict(start_batch_matching_input_body_dict)