rugmuncher-backend / sdks /python /docs /ScanResult.md
cryptorugmunch
merge: chore/cleanup-remove-bloat-and-secrets into main
bde2f3a
|
Raw
History Blame Contribute Delete
1.18 kB

ScanResult

Threat scan result.

Properties

Name Type Description Notes
address str
chain str
risk_score int [optional] [default to 0]
risk_level AppDomainTokenModelsRiskLevel
flags List[ScanFlag] [optional]
modules_run List[str] [optional]
scanned_at datetime [optional]

Example

from rugmunch.models.scan_result import ScanResult

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

# convert the object into a dict
scan_result_dict = scan_result_instance.to_dict()
# create an instance of ScanResult from a dict
scan_result_from_dict = ScanResult.from_dict(scan_result_dict)

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