Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.37 KB

File metadata and controls

34 lines (25 loc) · 1.37 KB

SecurityScanResult

Properties

Name Type Description Notes
analysis_id int Analysis the run was performed against
cancelled bool Whether the run was cancelled before it covered every function
decompiled int Functions successfully decompiled and scanned
failed int Functions whose decompilation or scan attempt errored
security_scan List[SecurityFinding] Shaped semgrep findings, one per result [optional]
total int Functions the run considered

Example

from revengai.models.security_scan_result import SecurityScanResult

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

# convert the object into a dict
security_scan_result_dict = security_scan_result_instance.to_dict()
# create an instance of SecurityScanResult from a dict
security_scan_result_from_dict = SecurityScanResult.from_dict(security_scan_result_dict)

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