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
By default a completed matching run for the same request is reused (response status=COMPLETED, no new run). Set true to force a fresh run.
[optional]
results_per_function
int
Max matches returned per source function. Defaults to 1.
[optional]
Example
fromrevengai.models.start_matching_for_analysis_input_bodyimportStartMatchingForAnalysisInputBody# TODO update the JSON string belowjson="{}"# create an instance of StartMatchingForAnalysisInputBody from a JSON stringstart_matching_for_analysis_input_body_instance=StartMatchingForAnalysisInputBody.from_json(json)
# print the JSON string representation of the objectprint(StartMatchingForAnalysisInputBody.to_json())
# convert the object into a dictstart_matching_for_analysis_input_body_dict=start_matching_for_analysis_input_body_instance.to_dict()
# create an instance of StartMatchingForAnalysisInputBody from a dictstart_matching_for_analysis_input_body_from_dict=StartMatchingForAnalysisInputBody.from_dict(start_matching_for_analysis_input_body_dict)