| Name | Type | Description | Notes |
|---|---|---|---|
| analysis_id | int | Analysis the run was performed against | |
| findings | List[CryptoFinding] | Functions with crypto-related evidence, sorted by confidence then evidence count | [optional] |
| total_functions | int | Functions the run considered |
from revengai.models.crypto_scan_result import CryptoScanResult
# TODO update the JSON string below
json = "{}"
# create an instance of CryptoScanResult from a JSON string
crypto_scan_result_instance = CryptoScanResult.from_json(json)
# print the JSON string representation of the object
print(CryptoScanResult.to_json())
# convert the object into a dict
crypto_scan_result_dict = crypto_scan_result_instance.to_dict()
# create an instance of CryptoScanResult from a dict
crypto_scan_result_from_dict = CryptoScanResult.from_dict(crypto_scan_result_dict)